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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
6 | 6 |
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 extern const char kChromeUITouchIconHost[]; | 170 extern const char kChromeUITouchIconHost[]; |
171 extern const char kChromeUITracingHost[]; | 171 extern const char kChromeUITracingHost[]; |
172 extern const char kChromeUITrackingHost[]; | 172 extern const char kChromeUITrackingHost[]; |
173 extern const char kChromeUITrackingHost2[]; | 173 extern const char kChromeUITrackingHost2[]; |
174 extern const char kChromeUIVersionHost[]; | 174 extern const char kChromeUIVersionHost[]; |
175 extern const char kChromeUIWorkersHost[]; | 175 extern const char kChromeUIWorkersHost[]; |
176 | 176 |
177 extern const char kChromeUIScreenshotPath[]; | 177 extern const char kChromeUIScreenshotPath[]; |
178 extern const char kChromeUIThemePath[]; | 178 extern const char kChromeUIThemePath[]; |
179 | 179 |
180 #if defined(OS_LINUX) | 180 #if defined(OS_LINUX) || defined(OS_OPENBSD) |
181 extern const char kChromeUILinuxProxyConfigHost[]; | 181 extern const char kChromeUILinuxProxyConfigHost[]; |
182 extern const char kChromeUISandboxHost[]; | 182 extern const char kChromeUISandboxHost[]; |
183 #endif | 183 #endif |
184 | 184 |
185 #if defined(OS_CHROMEOS) | 185 #if defined(OS_CHROMEOS) |
186 extern const char kChromeUIActivationMessageHost[]; | 186 extern const char kChromeUIActivationMessageHost[]; |
187 extern const char kChromeUIActiveDownloadsHost[]; | 187 extern const char kChromeUIActiveDownloadsHost[]; |
188 extern const char kChromeUIChooseMobileNetworkHost[]; | 188 extern const char kChromeUIChooseMobileNetworkHost[]; |
189 extern const char kChromeUICryptohomeHost[]; | 189 extern const char kChromeUICryptohomeHost[]; |
190 extern const char kChromeUIDiscardsHost[]; | 190 extern const char kChromeUIDiscardsHost[]; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 void RegisterChromeSchemes(); | 300 void RegisterChromeSchemes(); |
301 | 301 |
302 #if defined(OS_CHROMEOS) | 302 #if defined(OS_CHROMEOS) |
303 // "Learn more" URL for the Cloud Print section under Options. | 303 // "Learn more" URL for the Cloud Print section under Options. |
304 extern const char kCloudPrintLearnMoreURL[]; | 304 extern const char kCloudPrintLearnMoreURL[]; |
305 #endif | 305 #endif |
306 | 306 |
307 } // namespace chrome | 307 } // namespace chrome |
308 | 308 |
309 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 309 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |