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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // file. Querying this path will succeed no | 76 // file. Querying this path will succeed no |
77 // matter the file exists or not. | 77 // matter the file exists or not. |
78 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin | 78 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin |
79 // file. | 79 // file. |
80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
81 | 81 |
82 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 82 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
83 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. | 83 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. |
84 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version | 84 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version |
85 // (subdir of DIR_PNACL_BASE). | 85 // (subdir of DIR_PNACL_BASE). |
86 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. | |
87 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. | 86 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. |
88 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. | 87 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. |
89 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 88 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
90 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated | 89 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated |
91 // Widevine CDM files. | 90 // Widevine CDM files. |
92 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. | 91 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. |
93 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 92 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
94 // binary data (e.g., html files and images | 93 // binary data (e.g., html files and images |
95 // used by internal pages). | 94 // used by internal pages). |
96 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 95 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
(...skipping 16 matching lines...) Expand all Loading... |
113 | 112 |
114 PATH_END | 113 PATH_END |
115 }; | 114 }; |
116 | 115 |
117 // 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. |
118 void RegisterPathProvider(); | 117 void RegisterPathProvider(); |
119 | 118 |
120 } // namespace chrome | 119 } // namespace chrome |
121 | 120 |
122 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 121 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |