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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 FILE_PNACL_COMPONENT, // Full path to the PNaCl component files. | 80 FILE_PNACL_COMPONENT, // Full path to the PNaCl component files. |
81 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. | 81 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. |
82 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 82 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
83 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 83 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
84 // library. | 84 // library. |
85 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 85 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
86 // library. | 86 // library. |
87 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 87 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
88 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 88 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
89 // binary data (e.g., html files and images | 89 // binary data (e.g., html files and images |
90 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | |
90 // used by interal pages). | 91 // used by interal pages). |
Tom Sepez
2012/04/13 17:20:51
This comment goes with the one the line before.
Peng
2012/04/17 13:52:05
Done.
| |
91 #if defined(OS_CHROMEOS) | 92 #if defined(OS_CHROMEOS) |
92 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 93 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
93 #endif | 94 #endif |
94 | 95 |
95 // Valid only in development environment; TODO(darin): move these | 96 // Valid only in development environment; TODO(darin): move these |
96 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 97 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
97 DIR_TEST_DATA, // Directory where unit test data resides. | 98 DIR_TEST_DATA, // Directory where unit test data resides. |
98 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 99 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
99 | 100 |
100 PATH_END | 101 PATH_END |
101 }; | 102 }; |
102 | 103 |
103 // Call once to register the provider for the path keys defined above. | 104 // Call once to register the provider for the path keys defined above. |
104 void RegisterPathProvider(); | 105 void RegisterPathProvider(); |
105 | 106 |
106 } // namespace chrome | 107 } // namespace chrome |
107 | 108 |
108 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 109 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |