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 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 // This file declares path keys for the chrome module. These can be used with | 10 // This file declares path keys for the chrome module. These can be used with |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 // files to be installed when managed user | 105 // files to be installed when managed user |
106 // session starts. | 106 // session starts. |
107 | 107 |
108 #if defined(OS_LINUX) || (defined(OS_MACOSX) && !defined(OS_IOS)) | 108 #if defined(OS_LINUX) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
109 DIR_NATIVE_MESSAGING, // System directory where native messaging host | 109 DIR_NATIVE_MESSAGING, // System directory where native messaging host |
110 // manifest files are stored. | 110 // manifest files are stored. |
111 DIR_USER_NATIVE_MESSAGING, // Directory with Native Messaging Hosts | 111 DIR_USER_NATIVE_MESSAGING, // Directory with Native Messaging Hosts |
112 // installed per-user. | 112 // installed per-user. |
113 #endif | 113 #endif |
114 | 114 |
| 115 FILE_LIBADDRESSINPUT_CACHE, // Full path to an address validation data file. |
| 116 |
115 // Valid only in development environment; TODO(darin): move these | 117 // Valid only in development environment; TODO(darin): move these |
116 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 118 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
117 DIR_TEST_DATA, // Directory where unit test data resides. | 119 DIR_TEST_DATA, // Directory where unit test data resides. |
118 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 120 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
119 | 121 |
120 PATH_END | 122 PATH_END |
121 }; | 123 }; |
122 | 124 |
123 // Call once to register the provider for the path keys defined above. | 125 // Call once to register the provider for the path keys defined above. |
124 void RegisterPathProvider(); | 126 void RegisterPathProvider(); |
125 | 127 |
126 } // namespace chrome | 128 } // namespace chrome |
127 | 129 |
128 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 130 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |