| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #endif | 61 #endif |
| 62 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files. | 62 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files. |
| 63 | 63 |
| 64 DIR_DEFAULT_APPS, // Directory where installer places .crx files | 64 DIR_DEFAULT_APPS, // Directory where installer places .crx files |
| 65 // to be installed when chrome is first run. | 65 // to be installed when chrome is first run. |
| 66 DIR_PEPPER_FLASH_PLUGIN, // Directory to the bundled Pepper Flash plugin, | 66 DIR_PEPPER_FLASH_PLUGIN, // Directory to the bundled Pepper Flash plugin, |
| 67 // containing the plugin and the manifest. | 67 // containing the plugin and the manifest. |
| 68 DIR_COMPONENT_UPDATED_PEPPER_FLASH_PLUGIN, // Base directory of the Pepper | 68 DIR_COMPONENT_UPDATED_PEPPER_FLASH_PLUGIN, // Base directory of the Pepper |
| 69 // Flash plugins downloaded by the | 69 // Flash plugins downloaded by the |
| 70 // component updater. | 70 // component updater. |
| 71 DIR_PEPPER_FLASH_DEBUGGER_PLUGIN, // Base directory of the debugging version | 71 DIR_PEPPER_FLASH_SYSTEM_PLUGIN, // Base directory of the system version of |
| 72 // of the Pepper Flash plugin. | 72 // the Pepper Flash plugin, downloadable |
| 73 // from Adobe website. |
| 73 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 74 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
| 74 // contains embedded resources (version, | 75 // contains embedded resources (version, |
| 75 // strings, images, etc.). | 76 // strings, images, etc.). |
| 76 FILE_LOCAL_STATE, // Path and filename to the file in which | 77 FILE_LOCAL_STATE, // Path and filename to the file in which |
| 77 // machine/installation-specific state is saved. | 78 // machine/installation-specific state is saved. |
| 78 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 79 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
| 79 // contains recorded browser events for | 80 // contains recorded browser events for |
| 80 // playback. | 81 // playback. |
| 81 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin | 82 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin |
| 82 // file. Querying this path will succeed no | 83 // file. Querying this path will succeed no |
| (...skipping 48 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 |