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. | |
106 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the | 104 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the |
107 // default app order. | 105 // default app order. |
108 #endif | 106 #endif |
109 | 107 |
110 // Valid only in development environment; TODO(darin): move these | 108 // Valid only in development environment; TODO(darin): move these |
111 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 109 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
112 DIR_TEST_DATA, // Directory where unit test data resides. | 110 DIR_TEST_DATA, // Directory where unit test data resides. |
113 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 111 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
114 | 112 |
115 PATH_END | 113 PATH_END |
116 }; | 114 }; |
117 | 115 |
118 // Call once to register the provider for the path keys defined above. | 116 // Call once to register the provider for the path keys defined above. |
119 void RegisterPathProvider(); | 117 void RegisterPathProvider(); |
120 | 118 |
121 } // namespace chrome | 119 } // namespace chrome |
122 | 120 |
123 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 121 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |