Index: trunk/src/chromeos/chromeos_paths.cc |
=================================================================== |
--- trunk/src/chromeos/chromeos_paths.cc (revision 233050) |
+++ trunk/src/chromeos/chromeos_paths.cc (working copy) |
@@ -33,12 +33,9 @@ |
const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] = |
FILE_PATH_LITERAL("/var/run/chrome/update_reboot_needed_uptime"); |
-const base::FilePath::CharType kDeviceLocalAccountExtensionDir[] = |
+const base::FilePath::CharType kDeviceLocalAccountCacheDir[] = |
FILE_PATH_LITERAL("/var/cache/device_local_account_extensions"); |
-const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] = |
- FILE_PATH_LITERAL("/var/cache/device_local_account_external_policy_data"); |
- |
bool PathProvider(int key, base::FilePath* result) { |
switch (key) { |
case FILE_DEFAULT_APP_ORDER: |
@@ -59,12 +56,9 @@ |
case FILE_UPDATE_REBOOT_NEEDED_UPTIME: |
*result = base::FilePath(kUpdateRebootNeededUptimeFile); |
break; |
- case DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS: |
- *result = base::FilePath(kDeviceLocalAccountExtensionDir); |
+ case DIR_DEVICE_LOCAL_ACCOUNT_CACHE: |
+ *result = base::FilePath(kDeviceLocalAccountCacheDir); |
break; |
- case DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA: |
- *result = base::FilePath(kDeviceLocalAccountExternalDataDir); |
- break; |
default: |
return false; |
} |