summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 06:37:48 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 06:37:48 +0000
commitc81d12b9aec75336bc6eced5bf280bd5722a01b9 (patch)
treeed6e4138fd7d13f0af8ca039aaff2654650f5270 /app
parent24a09cf354e5b96af790f4771ce745949633f9a1 (diff)
downloadchromium_src-c81d12b9aec75336bc6eced5bf280bd5722a01b9.zip
chromium_src-c81d12b9aec75336bc6eced5bf280bd5722a01b9.tar.gz
chromium_src-c81d12b9aec75336bc6eced5bf280bd5722a01b9.tar.bz2
Remove DIR_THEMES, I removed themes/default.{dll,pak} a long
time ago. Review URL: http://codereview.chromium.org/2809028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50578 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-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.