summaryrefslogtreecommitdiff
path: root/profile/dirserviceprovider/nsProfileDirServiceProvider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'profile/dirserviceprovider/nsProfileDirServiceProvider.cpp')
-rw-r--r--profile/dirserviceprovider/nsProfileDirServiceProvider.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/profile/dirserviceprovider/nsProfileDirServiceProvider.cpp b/profile/dirserviceprovider/nsProfileDirServiceProvider.cpp
index 0091c31be..fe35213b1 100644
--- a/profile/dirserviceprovider/nsProfileDirServiceProvider.cpp
+++ b/profile/dirserviceprovider/nsProfileDirServiceProvider.cpp
@@ -16,7 +16,6 @@
// File Name Defines
#define PREFS_FILE_50_NAME NS_LITERAL_CSTRING("prefs.js")
-#define PREFS_FILE_METRO_50_NAME NS_LITERAL_CSTRING("metro-prefs.js")
#define USER_CHROME_DIR_50_NAME NS_LITERAL_CSTRING("chrome")
#define LOCAL_STORE_FILE_50_NAME NS_LITERAL_CSTRING("localstore.rdf")
#define PANELS_FILE_50_NAME NS_LITERAL_CSTRING("panels.rdf")
@@ -170,11 +169,6 @@ nsProfileDirServiceProvider::GetFile(const char *prop, bool *persistant, nsIFile
if (NS_SUCCEEDED(rv))
rv = localFile->AppendNative(PREFS_FILE_50_NAME);
}
- else if (strcmp(prop, NS_METRO_APP_PREFS_50_FILE) == 0) {
- rv = domainDir->Clone(getter_AddRefs(localFile));
- if (NS_SUCCEEDED(rv))
- rv = localFile->AppendNative(PREFS_FILE_METRO_50_NAME);
- }
else if (strcmp(prop, NS_APP_USER_PROFILE_50_DIR) == 0) {
rv = domainDir->Clone(getter_AddRefs(localFile));
}