| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // containing the plugin and the manifest. | 73 // containing the plugin and the manifest. |
| 74 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 74 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
| 75 // contains embedded resources (version, | 75 // contains embedded resources (version, |
| 76 // strings, images, etc.). | 76 // strings, images, etc.). |
| 77 FILE_LOCAL_STATE, // Path and filename to the file in which | 77 FILE_LOCAL_STATE, // Path and filename to the file in which |
| 78 // machine/installation-specific state is saved. | 78 // machine/installation-specific state is saved. |
| 79 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 79 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
| 80 // contains recorded browser events for | 80 // contains recorded browser events for |
| 81 // playback. | 81 // playback. |
| 82 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 82 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
| 83 // Querying this path will succeed no matter the |
| 84 // file exists or not. |
| 85 FILE_FLASH_PLUGIN_EXISTING, // Full path to the internal Flash plugin file. |
| 86 // Querying this path will fail if the file |
| 87 // doesn't exist. |
| 83 FILE_PEPPER_FLASH_PLUGIN, // Full path to the Pepper Flash plugin file. | 88 FILE_PEPPER_FLASH_PLUGIN, // Full path to the Pepper Flash plugin file. |
| 84 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 89 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
| 85 | 90 |
| 86 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 91 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 87 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. | 92 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. |
| 88 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. | 93 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. |
| 89 #endif | 94 #endif |
| 90 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 95 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
| 91 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. | 96 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. |
| 92 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version | 97 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version |
| (...skipping 21 matching lines...) Expand all Loading... |
| 114 | 119 |
| 115 PATH_END | 120 PATH_END |
| 116 }; | 121 }; |
| 117 | 122 |
| 118 // Call once to register the provider for the path keys defined above. | 123 // Call once to register the provider for the path keys defined above. |
| 119 void RegisterPathProvider(); | 124 void RegisterPathProvider(); |
| 120 | 125 |
| 121 } // namespace chrome | 126 } // namespace chrome |
| 122 | 127 |
| 123 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 128 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |