| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 // playback. | 79 // playback. |
| 80 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 80 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
| 81 FILE_PEPPER_FLASH_PLUGIN, // Full path to the Pepper Flash plugin file. | 81 FILE_PEPPER_FLASH_PLUGIN, // Full path to the Pepper Flash plugin file. |
| 82 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. | 82 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. |
| 83 | 83 |
| 84 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 84 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 85 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. | 85 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable. |
| 86 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. | 86 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable. |
| 87 #endif | 87 #endif |
| 88 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 88 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
| 89 FILE_PNACL_COMPONENT, // Full path to the PNaCl component files. | 89 DIR_PNACL_COMPONENT, // Full path to the PNaCl component files. |
| 90 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. | 90 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. |
| 91 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 91 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
| 92 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 92 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
| 93 // library. | 93 // library. |
| 94 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 94 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
| 95 // library. | 95 // library. |
| 96 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 96 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
| 97 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 97 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
| 98 // binary data (e.g., html files and images | 98 // binary data (e.g., html files and images |
| 99 // used by interal pages). | 99 // used by interal pages). |
| (...skipping 16 matching lines...) Expand all Loading... |
| 116 | 116 |
| 117 PATH_END | 117 PATH_END |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 // Call once to register the provider for the path keys defined above. | 120 // Call once to register the provider for the path keys defined above. |
| 121 void RegisterPathProvider(); | 121 void RegisterPathProvider(); |
| 122 | 122 |
| 123 } // namespace chrome | 123 } // namespace chrome |
| 124 | 124 |
| 125 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 125 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |