Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: trunk/src/chromeos/chromeos_paths.cc

Issue 343103005: Revert 278518 "Wire up component cloud policy to device local ac..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/chromeos/chromeos_paths.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chromeos/chromeos_paths.cc
===================================================================
--- trunk/src/chromeos/chromeos_paths.cc (revision 278641)
+++ trunk/src/chromeos/chromeos_paths.cc (working copy)
@@ -41,9 +41,6 @@
const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] =
FILE_PATH_LITERAL("/var/cache/device_local_account_external_policy_data");
-const base::FilePath::CharType kDeviceLocalAccountComponentPolicy[] =
- FILE_PATH_LITERAL("/var/cache/device_local_account_component_policy");
-
bool PathProvider(int key, base::FilePath* result) {
switch (key) {
case FILE_DEFAULT_APP_ORDER:
@@ -70,9 +67,6 @@
case DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA:
*result = base::FilePath(kDeviceLocalAccountExternalDataDir);
break;
- case DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY:
- *result = base::FilePath(kDeviceLocalAccountComponentPolicy);
- break;
default:
return false;
}
@@ -105,15 +99,6 @@
parent.AppendASCII("stub_install_attributes.pb"),
is_absolute,
create);
- PathService::Override(
- DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS,
- parent.AppendASCII("stub_device_local_account_extensions"));
- PathService::Override(
- DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA,
- parent.AppendASCII("stub_device_local_account_external_data"));
- PathService::Override(
- DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY,
- parent.AppendASCII("stub_device_local_account_component_policy"));
}
} // namespace chromeos
« no previous file with comments | « trunk/src/chromeos/chromeos_paths.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698