| OLD | NEW |
| 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2010 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 22 matching lines...) Expand all Loading... |
| 33 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 33 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
| 34 // contains embedded resources (version, | 34 // contains embedded resources (version, |
| 35 // strings, images, etc.). | 35 // strings, images, etc.). |
| 36 FILE_LOCAL_STATE, // Path and filename to the file in which | 36 FILE_LOCAL_STATE, // Path and filename to the file in which |
| 37 // machine/installation-specific state is saved. | 37 // machine/installation-specific state is saved. |
| 38 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 38 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
| 39 // contains recorded browser events for | 39 // contains recorded browser events for |
| 40 // playback. | 40 // playback. |
| 41 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. | 41 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. |
| 42 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 42 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
| 43 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
| 43 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 44 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
| 44 // library. | 45 // library. |
| 45 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 46 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
| 46 // library. | 47 // library. |
| 47 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 48 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
| 48 #if defined(OS_CHROMEOS) | 49 #if defined(OS_CHROMEOS) |
| 49 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 50 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
| 50 #endif | 51 #endif |
| 51 | 52 |
| 52 | 53 |
| 53 // Valid only in development environment; TODO(darin): move these | 54 // Valid only in development environment; TODO(darin): move these |
| 54 DIR_TEST_DATA, // Directory where unit test data resides. | 55 DIR_TEST_DATA, // Directory where unit test data resides. |
| 55 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 56 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 56 | 57 |
| 57 PATH_END | 58 PATH_END |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 // Call once to register the provider for the path keys defined above. | 61 // Call once to register the provider for the path keys defined above. |
| 61 void RegisterPathProvider(); | 62 void RegisterPathProvider(); |
| 62 | 63 |
| 63 } // namespace chrome | 64 } // namespace chrome |
| 64 | 65 |
| 65 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 66 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |