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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 94 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
95 FILE_WIDEVINE_CDM_PLUGIN, // Full path to the Widevine CDM Pepper plugin | 95 FILE_WIDEVINE_CDM_PLUGIN, // Full path to the Widevine CDM Pepper plugin |
96 // file. | 96 // file. |
97 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 97 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
98 // binary data (e.g., html files and images | 98 // binary data (e.g., html files and images |
99 // used by interal pages). | 99 // used by interal pages). |
100 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 100 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
101 #if defined(OS_CHROMEOS) | 101 #if defined(OS_CHROMEOS) |
102 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos | 102 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
103 // wallpapers reside. | 103 // wallpapers reside. |
| 104 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos |
| 105 // wallpaper thumbnails reside. |
104 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the | 106 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the |
105 // default app order. | 107 // default app order. |
106 #endif | 108 #endif |
107 | 109 |
108 // Valid only in development environment; TODO(darin): move these | 110 // Valid only in development environment; TODO(darin): move these |
109 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 111 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
110 DIR_TEST_DATA, // Directory where unit test data resides. | 112 DIR_TEST_DATA, // Directory where unit test data resides. |
111 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 113 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
112 | 114 |
113 PATH_END | 115 PATH_END |
114 }; | 116 }; |
115 | 117 |
116 // Call once to register the provider for the path keys defined above. | 118 // Call once to register the provider for the path keys defined above. |
117 void RegisterPathProvider(); | 119 void RegisterPathProvider(); |
118 | 120 |
119 } // namespace chrome | 121 } // namespace chrome |
120 | 122 |
121 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 123 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |