| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // library. | 89 // library. |
| 90 FILE_LIBAVUTIL, // Full path to libavutil media utility library. | 90 FILE_LIBAVUTIL, // Full path to libavutil media utility library. |
| 91 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 91 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
| 92 // binary data (e.g., html files and images | 92 // binary data (e.g., html files and images |
| 93 // used by interal pages). | 93 // used by interal pages). |
| 94 #if defined(OS_CHROMEOS) | 94 #if defined(OS_CHROMEOS) |
| 95 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 95 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
| 96 #endif | 96 #endif |
| 97 | 97 |
| 98 // Valid only in development environment; TODO(darin): move these | 98 // Valid only in development environment; TODO(darin): move these |
| 99 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
| 99 DIR_TEST_DATA, // Directory where unit test data resides. | 100 DIR_TEST_DATA, // Directory where unit test data resides. |
| 100 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 101 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 101 | 102 |
| 102 PATH_END | 103 PATH_END |
| 103 }; | 104 }; |
| 104 | 105 |
| 105 // Call once to register the provider for the path keys defined above. | 106 // Call once to register the provider for the path keys defined above. |
| 106 void RegisterPathProvider(); | 107 void RegisterPathProvider(); |
| 107 | 108 |
| 108 } // namespace chrome | 109 } // namespace chrome |
| 109 | 110 |
| 110 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 111 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |