OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This file declares path keys for the chrome module. These can be used with | 8 // This file declares path keys for the chrome module. These can be used with |
9 // the PathService to access various special directories and files. | 9 // the PathService to access various special directories and files. |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 FILE_RECORDED_SCRIPT, // full path to the script.log file that contains | 29 FILE_RECORDED_SCRIPT, // full path to the script.log file that contains |
30 // recorded browser events for playback. | 30 // recorded browser events for playback. |
31 FILE_GEARS_PLUGIN, // full path to the gears.dll plugin file. | 31 FILE_GEARS_PLUGIN, // full path to the gears.dll plugin file. |
32 FILE_LIBAVCODEC, // full path to libavcodec media decoding library. | 32 FILE_LIBAVCODEC, // full path to libavcodec media decoding library. |
33 FILE_LIBAVFORMAT, // full path to libavformat media parsing library. | 33 FILE_LIBAVFORMAT, // full path to libavformat media parsing library. |
34 FILE_LIBAVUTIL, // full path to libavutil media utility library. | 34 FILE_LIBAVUTIL, // full path to libavutil media utility library. |
35 | 35 |
36 // Valid only in development environment; TODO(darin): move these | 36 // Valid only in development environment; TODO(darin): move these |
37 DIR_TEST_DATA, // directory where unit test data resides | 37 DIR_TEST_DATA, // directory where unit test data resides |
38 DIR_TEST_TOOLS, // directory where unit test tools reside | 38 DIR_TEST_TOOLS, // directory where unit test tools reside |
39 FILE_TEST_SERVER, // simple HTTP server for testing the network stack | |
40 FILE_PYTHON_RUNTIME, // Python runtime, used for running the test server | |
41 | 39 |
42 PATH_END | 40 PATH_END |
43 }; | 41 }; |
44 | 42 |
45 // Call once to register the provider for the path keys defined above. | 43 // Call once to register the provider for the path keys defined above. |
46 void RegisterPathProvider(); | 44 void RegisterPathProvider(); |
47 | 45 |
48 } // namespace chrome | 46 } // namespace chrome |
49 | 47 |
50 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 48 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |