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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 #endif | 105 #endif |
| 106 #if defined(ENABLE_MANAGED_USERS) |
| 107 DIR_MANAGED_USERS_DEFAULT_APPS, // Directory where installer places .crx |
| 108 // files to be installed when managed user |
| 109 // session starts. |
| 110 #endif |
106 | 111 |
107 // Valid only in development environment; TODO(darin): move these | 112 // Valid only in development environment; TODO(darin): move these |
108 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 113 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
109 DIR_TEST_DATA, // Directory where unit test data resides. | 114 DIR_TEST_DATA, // Directory where unit test data resides. |
110 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 115 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
111 | 116 |
112 PATH_END | 117 PATH_END |
113 }; | 118 }; |
114 | 119 |
115 // Call once to register the provider for the path keys defined above. | 120 // Call once to register the provider for the path keys defined above. |
116 void RegisterPathProvider(); | 121 void RegisterPathProvider(); |
117 | 122 |
118 } // namespace chrome | 123 } // namespace chrome |
119 | 124 |
120 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 125 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |