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

Side by Side Diff: chromeos/chromeos_paths.h

Issue 341043005: Wire up component cloud policy to device local accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests 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
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 #ifndef CHROMEOS_CHROMEOS_PATHS_H_ 5 #ifndef CHROMEOS_CHROMEOS_PATHS_H_
6 #define CHROMEOS_CHROMEOS_PATHS_H_ 6 #define CHROMEOS_CHROMEOS_PATHS_H_
7 7
8 #include "chromeos/chromeos_export.h" 8 #include "chromeos/chromeos_export.h"
9 9
10 namespace base { 10 namespace base {
(...skipping 20 matching lines...) Expand all
31 // store the uptime at which an update 31 // store the uptime at which an update
32 // became necessary. The file should be 32 // became necessary. The file should be
33 // cleared on boot. 33 // cleared on boot.
34 DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS, // Directory under which a cache of 34 DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS, // Directory under which a cache of
35 // force-installed extensions is 35 // force-installed extensions is
36 // maintained for each device-local 36 // maintained for each device-local
37 // account. 37 // account.
38 DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA, // Directory where external data 38 DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA, // Directory where external data
39 // referenced by policies is cached 39 // referenced by policies is cached
40 // for device-local accounts. 40 // for device-local accounts.
41 DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY, // Directory where policy for the
bartfab (slow) 2014/06/20 09:17:25 Nit: This sentence is hard to parse. How about som
Joao da Silva 2014/06/20 11:48:46 Done.
42 // components of device-local
43 // account is stored. Currently
bartfab (slow) 2014/06/20 09:17:25 Nit: s/account/accounts/
Joao da Silva 2014/06/20 11:48:46 Done.
44 // this is used for policy for
45 // extensions.
41 PATH_END 46 PATH_END
42 }; 47 };
43 48
44 // Call once to register the provider for the path keys defined above. 49 // Call once to register the provider for the path keys defined above.
45 CHROMEOS_EXPORT void RegisterPathProvider(); 50 CHROMEOS_EXPORT void RegisterPathProvider();
46 51
47 // Overrides some of the paths listed above so that those files can be used 52 // Overrides some of the paths listed above so that those files can be used
48 // when not running on ChromeOS. The stubs files will be relative to 53 // when not running on ChromeOS. The stubs files will be relative to
49 // |stubs_dir|. It is not valid to call this when running on ChromeOS. 54 // |stubs_dir|. It is not valid to call this when running on ChromeOS.
50 CHROMEOS_EXPORT void RegisterStubPathOverrides(const base::FilePath& stubs_dir); 55 CHROMEOS_EXPORT void RegisterStubPathOverrides(const base::FilePath& stubs_dir);
51 56
52 } // namespace chromeos 57 } // namespace chromeos
53 58
54 #endif // CHROMEOS_CHROMEOS_PATHS_H_ 59 #endif // CHROMEOS_CHROMEOS_PATHS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698