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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « trunk/src/chromeos/chromeos_paths.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromeos/chromeos_paths.h" 5 #include "chromeos/chromeos_paths.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/sys_info.h" 10 #include "base/sys_info.h"
(...skipping 23 matching lines...) Expand all
34 34
35 const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] = 35 const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] =
36 FILE_PATH_LITERAL("/var/run/chrome/update_reboot_needed_uptime"); 36 FILE_PATH_LITERAL("/var/run/chrome/update_reboot_needed_uptime");
37 37
38 const base::FilePath::CharType kDeviceLocalAccountExtensionDir[] = 38 const base::FilePath::CharType kDeviceLocalAccountExtensionDir[] =
39 FILE_PATH_LITERAL("/var/cache/device_local_account_extensions"); 39 FILE_PATH_LITERAL("/var/cache/device_local_account_extensions");
40 40
41 const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] = 41 const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] =
42 FILE_PATH_LITERAL("/var/cache/device_local_account_external_policy_data"); 42 FILE_PATH_LITERAL("/var/cache/device_local_account_external_policy_data");
43 43
44 const base::FilePath::CharType kDeviceLocalAccountComponentPolicy[] =
45 FILE_PATH_LITERAL("/var/cache/device_local_account_component_policy");
46
47 bool PathProvider(int key, base::FilePath* result) { 44 bool PathProvider(int key, base::FilePath* result) {
48 switch (key) { 45 switch (key) {
49 case FILE_DEFAULT_APP_ORDER: 46 case FILE_DEFAULT_APP_ORDER:
50 *result = base::FilePath(kDefaultAppOrderFileName); 47 *result = base::FilePath(kDefaultAppOrderFileName);
51 break; 48 break;
52 case DIR_USER_POLICY_KEYS: 49 case DIR_USER_POLICY_KEYS:
53 *result = base::FilePath(kDefaultUserPolicyKeysDir); 50 *result = base::FilePath(kDefaultUserPolicyKeysDir);
54 break; 51 break;
55 case FILE_OWNER_KEY: 52 case FILE_OWNER_KEY:
56 *result = base::FilePath(kOwnerKeyFileName); 53 *result = base::FilePath(kOwnerKeyFileName);
57 break; 54 break;
58 case FILE_INSTALL_ATTRIBUTES: 55 case FILE_INSTALL_ATTRIBUTES:
59 *result = base::FilePath(kInstallAttributesFileName); 56 *result = base::FilePath(kInstallAttributesFileName);
60 break; 57 break;
61 case FILE_UPTIME: 58 case FILE_UPTIME:
62 *result = base::FilePath(kUptimeFileName); 59 *result = base::FilePath(kUptimeFileName);
63 break; 60 break;
64 case FILE_UPDATE_REBOOT_NEEDED_UPTIME: 61 case FILE_UPDATE_REBOOT_NEEDED_UPTIME:
65 *result = base::FilePath(kUpdateRebootNeededUptimeFile); 62 *result = base::FilePath(kUpdateRebootNeededUptimeFile);
66 break; 63 break;
67 case DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS: 64 case DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS:
68 *result = base::FilePath(kDeviceLocalAccountExtensionDir); 65 *result = base::FilePath(kDeviceLocalAccountExtensionDir);
69 break; 66 break;
70 case DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA: 67 case DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA:
71 *result = base::FilePath(kDeviceLocalAccountExternalDataDir); 68 *result = base::FilePath(kDeviceLocalAccountExternalDataDir);
72 break; 69 break;
73 case DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY:
74 *result = base::FilePath(kDeviceLocalAccountComponentPolicy);
75 break;
76 default: 70 default:
77 return false; 71 return false;
78 } 72 }
79 return true; 73 return true;
80 } 74 }
81 75
82 } // namespace 76 } // namespace
83 77
84 void RegisterPathProvider() { 78 void RegisterPathProvider() {
85 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 79 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
(...skipping 12 matching lines...) Expand all
98 PathService::OverrideAndCreateIfNeeded( 92 PathService::OverrideAndCreateIfNeeded(
99 FILE_OWNER_KEY, 93 FILE_OWNER_KEY,
100 parent.AppendASCII("stub_owner.key"), 94 parent.AppendASCII("stub_owner.key"),
101 is_absolute, 95 is_absolute,
102 create); 96 create);
103 PathService::OverrideAndCreateIfNeeded( 97 PathService::OverrideAndCreateIfNeeded(
104 FILE_INSTALL_ATTRIBUTES, 98 FILE_INSTALL_ATTRIBUTES,
105 parent.AppendASCII("stub_install_attributes.pb"), 99 parent.AppendASCII("stub_install_attributes.pb"),
106 is_absolute, 100 is_absolute,
107 create); 101 create);
108 PathService::Override(
109 DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS,
110 parent.AppendASCII("stub_device_local_account_extensions"));
111 PathService::Override(
112 DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA,
113 parent.AppendASCII("stub_device_local_account_external_data"));
114 PathService::Override(
115 DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY,
116 parent.AppendASCII("stub_device_local_account_component_policy"));
117 } 102 }
118 103
119 } // namespace chromeos 104 } // namespace chromeos
OLDNEW
« 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