OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 // This file declares path keys for the chrome module. These can be used with | 10 // This file declares path keys for the chrome module. These can be used with |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 // binary data (e.g., html files and images | 95 // binary data (e.g., html files and images |
96 // used by interal pages). | 96 // used by interal pages). |
97 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 97 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
98 #if defined(OS_CHROMEOS) | 98 #if defined(OS_CHROMEOS) |
99 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos | 99 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
100 // wallpapers reside. | 100 // wallpapers reside. |
101 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos | 101 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos |
102 // wallpaper thumbnails reside. | 102 // wallpaper thumbnails reside. |
103 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the | 103 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the |
104 // default app order. | 104 // default app order. |
| 105 DIR_USER_POLICY_KEYS, // Directory where the session_manager stores |
| 106 // the user policy keys. |
105 #endif | 107 #endif |
106 | 108 |
107 // Valid only in development environment; TODO(darin): move these | 109 // Valid only in development environment; TODO(darin): move these |
108 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 110 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
109 DIR_TEST_DATA, // Directory where unit test data resides. | 111 DIR_TEST_DATA, // Directory where unit test data resides. |
110 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 112 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
111 | 113 |
112 PATH_END | 114 PATH_END |
113 }; | 115 }; |
114 | 116 |
115 // Call once to register the provider for the path keys defined above. | 117 // Call once to register the provider for the path keys defined above. |
116 void RegisterPathProvider(); | 118 void RegisterPathProvider(); |
117 | 119 |
118 } // namespace chrome | 120 } // namespace chrome |
119 | 121 |
120 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 122 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |