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 // 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 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 extern const char kChromeUIWebRTCDeviceProviderHost[]; | 248 extern const char kChromeUIWebRTCDeviceProviderHost[]; |
249 extern const char kChromeUIWorkersHost[]; | 249 extern const char kChromeUIWorkersHost[]; |
250 | 250 |
251 extern const char kChromeUIScreenshotPath[]; | 251 extern const char kChromeUIScreenshotPath[]; |
252 extern const char kChromeUIThemePath[]; | 252 extern const char kChromeUIThemePath[]; |
253 | 253 |
254 #if defined(ENABLE_PRINT_PREVIEW) | 254 #if defined(ENABLE_PRINT_PREVIEW) |
255 extern const char kChromeUIPrintHost[]; | 255 extern const char kChromeUIPrintHost[]; |
256 #endif // ENABLE_PRINT_PREVIEW | 256 #endif // ENABLE_PRINT_PREVIEW |
257 | 257 |
258 #if defined(OS_ANDROID) | |
259 extern const char kChromeUIWelcomeHost[]; | |
260 #endif | |
261 | |
262 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 258 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
263 extern const char kChromeUILinuxProxyConfigHost[]; | 259 extern const char kChromeUILinuxProxyConfigHost[]; |
264 extern const char kChromeUISandboxHost[]; | 260 extern const char kChromeUISandboxHost[]; |
265 #endif | 261 #endif |
266 | 262 |
267 #if defined(OS_CHROMEOS) | 263 #if defined(OS_CHROMEOS) |
268 extern const char kChromeUIActivationMessageHost[]; | 264 extern const char kChromeUIActivationMessageHost[]; |
269 extern const char kChromeUIAppLaunchHost[]; | 265 extern const char kChromeUIAppLaunchHost[]; |
270 extern const char kChromeUIBluetoothPairingHost[]; | 266 extern const char kChromeUIBluetoothPairingHost[]; |
271 extern const char kChromeUICertificateManagerHost[]; | 267 extern const char kChromeUICertificateManagerHost[]; |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 // The URL for the 32-bit Mac deprecation help center article | 551 // The URL for the 32-bit Mac deprecation help center article |
556 extern const char kMac32BitDeprecationURL[]; | 552 extern const char kMac32BitDeprecationURL[]; |
557 #endif | 553 #endif |
558 | 554 |
559 // The URL for the "Learn more" link the the Easy Unlock settings. | 555 // The URL for the "Learn more" link the the Easy Unlock settings. |
560 extern const char kEasyUnlockLearnMoreUrl[]; | 556 extern const char kEasyUnlockLearnMoreUrl[]; |
561 | 557 |
562 } // namespace chrome | 558 } // namespace chrome |
563 | 559 |
564 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 560 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |