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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 FILE_LOCAL_STATE, // Path and filename to the file in which | 76 FILE_LOCAL_STATE, // Path and filename to the file in which |
77 // machine/installation-specific state is saved. | 77 // machine/installation-specific state is saved. |
78 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 78 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
79 // contains recorded browser events for | 79 // contains recorded browser events for |
80 // playback. | 80 // playback. |
81 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin | 81 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin |
82 // file. Querying this path will succeed no | 82 // file. Querying this path will succeed no |
83 // matter the file exists or not. | 83 // matter the file exists or not. |
84 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin | 84 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin |
85 // file. | 85 // file. |
| 86 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
86 | 87 |
87 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 88 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
88 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. | 89 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. |
89 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version | 90 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version |
90 // (subdir of DIR_PNACL_BASE). | 91 // (subdir of DIR_PNACL_BASE). |
91 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. | 92 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. |
92 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. | 93 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. |
93 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 94 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
94 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated | 95 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated |
95 // Widevine CDM files. | 96 // Widevine CDM files. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 // Call once to register the provider for the path keys defined above. | 132 // Call once to register the provider for the path keys defined above. |
132 void RegisterPathProvider(); | 133 void RegisterPathProvider(); |
133 | 134 |
134 // Get or set the invalid user data dir that was originally specified. | 135 // Get or set the invalid user data dir that was originally specified. |
135 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); | 136 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); |
136 const base::FilePath& GetInvalidSpecifiedUserDataDir(); | 137 const base::FilePath& GetInvalidSpecifiedUserDataDir(); |
137 | 138 |
138 } // namespace chrome | 139 } // namespace chrome |
139 | 140 |
140 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 141 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |