OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_COMMON_CHROME_PATHS_H__ | 5 #ifndef CHROME_COMMON_CHROME_PATHS_H__ |
6 #define CHROME_COMMON_CHROME_PATHS_H__ | 6 #define CHROME_COMMON_CHROME_PATHS_H__ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 // contains subdirectories. | 47 // contains subdirectories. |
48 #endif | 48 #endif |
49 #if defined(OS_MACOSX) | 49 #if defined(OS_MACOSX) |
50 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist | 50 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist |
51 // files for the current user. | 51 // files for the current user. |
52 #endif | 52 #endif |
53 #if defined(OS_CHROMEOS) | 53 #if defined(OS_CHROMEOS) |
54 DIR_USER_EXTERNAL_EXTENSIONS, // Directory for per-user external extensions. | 54 DIR_USER_EXTERNAL_EXTENSIONS, // Directory for per-user external extensions. |
55 // Used for OEM customization on Chrome OS. | 55 // Used for OEM customization on Chrome OS. |
56 // Getting this path does not create it. | 56 // Getting this path does not create it. |
| 57 DIR_USER_POLICY, // Root-owned per-user private enterprise |
| 58 // directory. |
57 #endif | 59 #endif |
58 | 60 |
59 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files. | 61 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files. |
60 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 62 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
61 // contains embedded resources (version, | 63 // contains embedded resources (version, |
62 // strings, images, etc.). | 64 // strings, images, etc.). |
63 FILE_LOCAL_STATE, // Path and filename to the file in which | 65 FILE_LOCAL_STATE, // Path and filename to the file in which |
64 // machine/installation-specific state is saved. | 66 // machine/installation-specific state is saved. |
65 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 67 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
66 // contains recorded browser events for | 68 // contains recorded browser events for |
(...skipping 20 matching lines...) Expand all Loading... |
87 | 89 |
88 PATH_END | 90 PATH_END |
89 }; | 91 }; |
90 | 92 |
91 // Call once to register the provider for the path keys defined above. | 93 // Call once to register the provider for the path keys defined above. |
92 void RegisterPathProvider(); | 94 void RegisterPathProvider(); |
93 | 95 |
94 } // namespace chrome | 96 } // namespace chrome |
95 | 97 |
96 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 98 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |