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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. | 88 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. |
89 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 89 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
90 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 90 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
91 // library. | 91 // library. |
92 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 92 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
93 // library. | 93 // library. |
94 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 94 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
95 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 95 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
96 // binary data (e.g., html files and images | 96 // binary data (e.g., html files and images |
97 // used by interal pages). | 97 // used by interal pages). |
| 98 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
98 #if defined(OS_CHROMEOS) | 99 #if defined(OS_CHROMEOS) |
99 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 100 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
100 #endif | 101 #endif |
101 | 102 |
102 // Valid only in development environment; TODO(darin): move these | 103 // Valid only in development environment; TODO(darin): move these |
103 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 104 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
104 DIR_TEST_DATA, // Directory where unit test data resides. | 105 DIR_TEST_DATA, // Directory where unit test data resides. |
105 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 106 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
106 | 107 |
107 PATH_END | 108 PATH_END |
108 }; | 109 }; |
109 | 110 |
110 // Call once to register the provider for the path keys defined above. | 111 // Call once to register the provider for the path keys defined above. |
111 void RegisterPathProvider(); | 112 void RegisterPathProvider(); |
112 | 113 |
113 } // namespace chrome | 114 } // namespace chrome |
114 | 115 |
115 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 116 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |