OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 #endif | 56 #endif |
57 | 57 |
58 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 58 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
59 // contains embedded resources (version, | 59 // contains embedded resources (version, |
60 // strings, images, etc.). | 60 // strings, images, etc.). |
61 FILE_LOCAL_STATE, // Path and filename to the file in which | 61 FILE_LOCAL_STATE, // Path and filename to the file in which |
62 // machine/installation-specific state is saved. | 62 // machine/installation-specific state is saved. |
63 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 63 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
64 // contains recorded browser events for | 64 // contains recorded browser events for |
65 // playback. | 65 // playback. |
66 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. | |
67 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 66 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
68 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 67 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
69 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 68 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
70 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 69 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
71 // library. | 70 // library. |
72 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 71 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
73 // library. | 72 // library. |
74 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 73 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
75 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 74 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
76 // binary data (e.g., html files and images | 75 // binary data (e.g., html files and images |
77 // used by interal pages). | 76 // used by interal pages). |
78 #if defined(OS_CHROMEOS) | 77 #if defined(OS_CHROMEOS) |
79 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 78 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
80 #endif | 79 #endif |
81 | 80 |
82 | 81 |
83 // Valid only in development environment; TODO(darin): move these | 82 // Valid only in development environment; TODO(darin): move these |
84 DIR_TEST_DATA, // Directory where unit test data resides. | 83 DIR_TEST_DATA, // Directory where unit test data resides. |
85 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 84 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
86 | 85 |
87 PATH_END | 86 PATH_END |
88 }; | 87 }; |
89 | 88 |
90 // Call once to register the provider for the path keys defined above. | 89 // Call once to register the provider for the path keys defined above. |
91 void RegisterPathProvider(); | 90 void RegisterPathProvider(); |
92 | 91 |
93 } // namespace chrome | 92 } // namespace chrome |
94 | 93 |
95 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 94 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |