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 namespace base { | 10 namespace base { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 // file. | 85 // file. |
86 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 86 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
87 | 87 |
88 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 88 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
89 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. | 89 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. |
90 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version | 90 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version |
91 // (subdir of DIR_PNACL_BASE). | 91 // (subdir of DIR_PNACL_BASE). |
92 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. | 92 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. |
93 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. | 93 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. |
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 DIR_COMPONENT_CLD2, // Directory that contains component-updated |
| 96 // Compact Language Detector files |
95 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated | 97 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated |
96 // Widevine CDM files. | 98 // Widevine CDM files. |
97 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. | 99 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. |
98 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 100 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
99 // binary data (e.g., html files and images | 101 // binary data (e.g., html files and images |
100 // used by internal pages). | 102 // used by internal pages). |
101 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 103 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
102 #if defined(OS_CHROMEOS) | 104 #if defined(OS_CHROMEOS) |
103 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos | 105 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
104 // wallpapers reside. | 106 // wallpapers reside. |
(...skipping 24 matching lines...) Expand all Loading... |
129 // Call once to register the provider for the path keys defined above. | 131 // Call once to register the provider for the path keys defined above. |
130 void RegisterPathProvider(); | 132 void RegisterPathProvider(); |
131 | 133 |
132 // Get or set the invalid user data dir that was originally specified. | 134 // Get or set the invalid user data dir that was originally specified. |
133 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); | 135 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); |
134 const base::FilePath& GetInvalidSpecifiedUserDataDir(); | 136 const base::FilePath& GetInvalidSpecifiedUserDataDir(); |
135 | 137 |
136 } // namespace chrome | 138 } // namespace chrome |
137 | 139 |
138 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 140 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |