| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
| 97 FILE_LIBAVCODEC, // Full path to libavcodec media decoding | 97 FILE_LIBAVCODEC, // Full path to libavcodec media decoding |
| 98 // library. | 98 // library. |
| 99 FILE_LIBAVFORMAT, // Full path to libavformat media parsing | 99 FILE_LIBAVFORMAT, // Full path to libavformat media parsing |
| 100 // library. | 100 // library. |
| 101 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 101 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
| 102 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 102 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
| 103 // binary data (e.g., html files and images | 103 // binary data (e.g., html files and images |
| 104 // used by interal pages). | 104 // used by interal pages). |
| 105 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 105 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
| 106 #if defined(OS_CHROMEOS) |
| 107 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
| 108 // wallpapers reside. |
| 109 #endif |
| 106 | 110 |
| 107 // Valid only in development environment; TODO(darin): move these | 111 // Valid only in development environment; TODO(darin): move these |
| 108 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 112 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
| 109 DIR_TEST_DATA, // Directory where unit test data resides. | 113 DIR_TEST_DATA, // Directory where unit test data resides. |
| 110 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 114 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 111 | 115 |
| 112 PATH_END | 116 PATH_END |
| 113 }; | 117 }; |
| 114 | 118 |
| 115 // Call once to register the provider for the path keys defined above. | 119 // Call once to register the provider for the path keys defined above. |
| 116 void RegisterPathProvider(); | 120 void RegisterPathProvider(); |
| 117 | 121 |
| 118 } // namespace chrome | 122 } // namespace chrome |
| 119 | 123 |
| 120 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 124 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |