summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/app_paths.cc10
-rw-r--r--app/app_paths.h1
2 files changed, 0 insertions, 11 deletions
diff --git a/app/app_paths.cc b/app/app_paths.cc
index 3121c43..b3efb09 100644
--- a/app/app_paths.cc
+++ b/app/app_paths.cc
@@ -18,16 +18,6 @@ bool PathProvider(int key, FilePath* result) {
FilePath cur;
switch (key) {
-#if !defined(OS_MACOSX)
- // These are not "themes" that are user-created, but rather the dlls and
- // pak files. On the Mac, we keep the pak files in the lproj folders.
- case app::DIR_THEMES:
- if (!PathService::Get(base::DIR_MODULE, &cur))
- return false;
- cur = cur.Append(FILE_PATH_LITERAL("themes"));
- create_dir = true;
- break;
-#endif
case app::DIR_LOCALES:
if (!PathService::Get(base::DIR_MODULE, &cur))
return false;
diff --git a/app/app_paths.h b/app/app_paths.h
index 250e6bf..2371377 100644
--- a/app/app_paths.h
+++ b/app/app_paths.h
@@ -13,7 +13,6 @@ namespace app {
enum {
PATH_START = 2000,
- DIR_THEMES, // Directory where theme dll files are stored.
DIR_LOCALES, // Directory where locale resources are stored.
DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files.