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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // machine/installation-specific state is saved. | 64 // machine/installation-specific state is saved. |
65 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 65 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
66 // contains recorded browser events for | 66 // contains recorded browser events for |
67 // playback. | 67 // playback. |
68 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 68 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
69 FILE_PEPPER_FLASH_PLUGIN, // Full path to the pepper Flash plugin file. | 69 FILE_PEPPER_FLASH_PLUGIN, // Full path to the pepper Flash plugin file. |
70 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 70 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
71 | 71 |
72 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 72 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
73 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. | 73 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. |
74 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. | |
75 #endif | 74 #endif |
76 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 75 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
77 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 76 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
78 // library. | 77 // library. |
79 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 78 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
80 // library. | 79 // library. |
81 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 80 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
82 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 81 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
83 // binary data (e.g., html files and images | 82 // binary data (e.g., html files and images |
84 // used by interal pages). | 83 // used by interal pages). |
85 #if defined(OS_CHROMEOS) | 84 #if defined(OS_CHROMEOS) |
86 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 85 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
87 #endif | 86 #endif |
88 | 87 |
89 // Valid only in development environment; TODO(darin): move these | 88 // Valid only in development environment; TODO(darin): move these |
90 DIR_TEST_DATA, // Directory where unit test data resides. | 89 DIR_TEST_DATA, // Directory where unit test data resides. |
91 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 90 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
92 | 91 |
93 PATH_END | 92 PATH_END |
94 }; | 93 }; |
95 | 94 |
96 // Call once to register the provider for the path keys defined above. | 95 // Call once to register the provider for the path keys defined above. |
97 void RegisterPathProvider(); | 96 void RegisterPathProvider(); |
98 | 97 |
99 } // namespace chrome | 98 } // namespace chrome |
100 | 99 |
101 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 100 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |