summaryrefslogtreecommitdiffstats
path: root/chromeos/chromeos_paths.cc
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-21 20:20:10 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-21 20:20:10 +0000
commite0eef7074d20d11cd11c882475b446d74a334707 (patch)
tree978d9ba8620492a9e69b227e6f9683b10837234b /chromeos/chromeos_paths.cc
parent535380a3d4c99727bd0cd197ad9d9525c2f3c983 (diff)
downloadchromium_src-e0eef7074d20d11cd11c882475b446d74a334707.zip
chromium_src-e0eef7074d20d11cd11c882475b446d74a334707.tar.gz
chromium_src-e0eef7074d20d11cd11c882475b446d74a334707.tar.bz2
Revert 229896 "Cache force-installed apps/extensions in device-l..."
Caused a build failure: http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Builder/builds/56839/steps/compile/logs/stdio ../../chrome/browser/chromeos/extensions/device_local_account_external_policy_loader.cc: In member function 'void chromeos::DeviceLocalAccountExternalPolicyLoader::UpdateExtensionListFromStore()': ../../chrome/browser/chromeos/extensions/device_local_account_external_policy_loader.cc:98:3:error: 'ExtensionInstallForcelistPolicyHandler' is not a member of 'policy' ../../chrome/browser/chromeos/extensions/device_local_account_external_policy_loader.cc:99:7:error: expected ';' before 'policy_handler' ../../chrome/browser/chromeos/extensions/device_local_account_external_policy_loader.cc:100:7:error: 'policy_handler' was not declared in this scope > Cache force-installed apps/extensions in device-local accounts > > This CL adds the DeviceLocalAccountExternalPolicyLoader, a replacement for > the ExternalPolicyLoader that caches force-installed apps/extensions, > allowing them to be installed offline. The caches for individual accounts > are managed by the DeviceLocalAccountPolicyService which makes sure to > remove obsolete cache directories. > > BUG=287802 > TEST=Full coverage with new browser and unit tests > > Review URL: https://codereview.chromium.org/27548004 TBR=bartfab@chromium.org Review URL: https://codereview.chromium.org/32513006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/chromeos_paths.cc')
-rw-r--r--chromeos/chromeos_paths.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/chromeos/chromeos_paths.cc b/chromeos/chromeos_paths.cc
index 6e5f268..10dff74 100644
--- a/chromeos/chromeos_paths.cc
+++ b/chromeos/chromeos_paths.cc
@@ -33,9 +33,6 @@ const base::FilePath::CharType kUptimeFileName[] =
const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] =
FILE_PATH_LITERAL("/var/run/chrome/update_reboot_needed_uptime");
-const base::FilePath::CharType kDeviceLocalAccountCacheDir[] =
- FILE_PATH_LITERAL("/var/cache/device_local_account_extensions");
-
bool PathProvider(int key, base::FilePath* result) {
switch (key) {
case FILE_DEFAULT_APP_ORDER:
@@ -56,9 +53,6 @@ bool PathProvider(int key, base::FilePath* result) {
case FILE_UPDATE_REBOOT_NEEDED_UPTIME:
*result = base::FilePath(kUpdateRebootNeededUptimeFile);
break;
- case DIR_DEVICE_LOCAL_ACCOUNT_CACHE:
- *result = base::FilePath(kDeviceLocalAccountCacheDir);
- break;
default:
return false;
}