| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers | 103 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers |
| 104 // reside. | 104 // reside. |
| 105 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the | 105 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the |
| 106 // default app order. | 106 // default app order. |
| 107 DIR_USER_POLICY_KEYS, // Directory where the session_manager stores | |
| 108 // the user policy keys. | |
| 109 #endif | 107 #endif |
| 110 | 108 |
| 111 // Valid only in development environment; TODO(darin): move these | 109 // Valid only in development environment; TODO(darin): move these |
| 112 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 110 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
| 113 DIR_TEST_DATA, // Directory where unit test data resides. | 111 DIR_TEST_DATA, // Directory where unit test data resides. |
| 114 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 112 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 115 | 113 |
| 116 PATH_END | 114 PATH_END |
| 117 }; | 115 }; |
| 118 | 116 |
| 119 // 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. |
| 120 void RegisterPathProvider(); | 118 void RegisterPathProvider(); |
| 121 | 119 |
| 122 } // namespace chrome | 120 } // namespace chrome |
| 123 | 121 |
| 124 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 122 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |