| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 // playback. | 77 // playback. |
| 78 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 78 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
| 79 FILE_PEPPER_FLASH_PLUGIN, // Full path to the pepper Flash plugin file. | 79 FILE_PEPPER_FLASH_PLUGIN, // Full path to the pepper Flash plugin file. |
| 80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
| 81 | 81 |
| 82 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 82 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 83 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. | 83 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. |
| 84 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. | 84 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. |
| 85 #endif | 85 #endif |
| 86 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 86 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
| 87 FILE_PNACL_COMPONENT, // Full path to the PNaCl component files. |
| 87 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 88 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
| 88 // library. | 89 // library. |
| 89 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 90 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
| 90 // library. | 91 // library. |
| 91 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 92 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
| 92 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 93 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
| 93 // binary data (e.g., html files and images | 94 // binary data (e.g., html files and images |
| 94 // used by interal pages). | 95 // used by interal pages). |
| 95 #if defined(OS_CHROMEOS) | 96 #if defined(OS_CHROMEOS) |
| 96 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 97 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
| 97 #endif | 98 #endif |
| 98 | 99 |
| 99 // Valid only in development environment; TODO(darin): move these | 100 // Valid only in development environment; TODO(darin): move these |
| 100 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 101 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
| 101 DIR_TEST_DATA, // Directory where unit test data resides. | 102 DIR_TEST_DATA, // Directory where unit test data resides. |
| 102 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 103 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 103 | 104 |
| 104 PATH_END | 105 PATH_END |
| 105 }; | 106 }; |
| 106 | 107 |
| 107 // Call once to register the provider for the path keys defined above. | 108 // Call once to register the provider for the path keys defined above. |
| 108 void RegisterPathProvider(); | 109 void RegisterPathProvider(); |
| 109 | 110 |
| 110 } // namespace chrome | 111 } // namespace chrome |
| 111 | 112 |
| 112 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 113 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |