| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 extern const char kChromeUIPrintHost[]; | 243 extern const char kChromeUIPrintHost[]; |
| 244 #endif // ENABLE_PRINT_PREVIEW | 244 #endif // ENABLE_PRINT_PREVIEW |
| 245 | 245 |
| 246 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 246 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 247 extern const char kChromeUILinuxProxyConfigHost[]; | 247 extern const char kChromeUILinuxProxyConfigHost[]; |
| 248 extern const char kChromeUISandboxHost[]; | 248 extern const char kChromeUISandboxHost[]; |
| 249 #endif | 249 #endif |
| 250 | 250 |
| 251 #if defined(OS_ANDROID) | 251 #if defined(OS_ANDROID) |
| 252 extern const char kChromeUIContextualSearchPromoHost[]; | 252 extern const char kChromeUIContextualSearchPromoHost[]; |
| 253 extern const char kChromeUIPopularSitesInternalsHost[]; |
| 253 #endif | 254 #endif |
| 254 | 255 |
| 255 #if defined(OS_CHROMEOS) | 256 #if defined(OS_CHROMEOS) |
| 256 extern const char kChromeUIActivationMessageHost[]; | 257 extern const char kChromeUIActivationMessageHost[]; |
| 257 extern const char kChromeUIAppLaunchHost[]; | 258 extern const char kChromeUIAppLaunchHost[]; |
| 258 extern const char kChromeUIBluetoothPairingHost[]; | 259 extern const char kChromeUIBluetoothPairingHost[]; |
| 259 extern const char kChromeUICertificateManagerHost[]; | 260 extern const char kChromeUICertificateManagerHost[]; |
| 260 extern const char kChromeUIChooseMobileNetworkHost[]; | 261 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 261 extern const char kChromeUICryptohomeHost[]; | 262 extern const char kChromeUICryptohomeHost[]; |
| 262 extern const char kChromeUIDeviceEmulatorHost[]; | 263 extern const char kChromeUIDeviceEmulatorHost[]; |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 extern const char kEasyUnlockLearnMoreUrl[]; | 554 extern const char kEasyUnlockLearnMoreUrl[]; |
| 554 | 555 |
| 555 #if defined(OS_WIN) || defined(OS_CHROMEOS) | 556 #if defined(OS_WIN) || defined(OS_CHROMEOS) |
| 556 extern const char kChromeUIDiscardsHost[]; | 557 extern const char kChromeUIDiscardsHost[]; |
| 557 extern const char kChromeUIDiscardsURL[]; | 558 extern const char kChromeUIDiscardsURL[]; |
| 558 #endif | 559 #endif |
| 559 | 560 |
| 560 } // namespace chrome | 561 } // namespace chrome |
| 561 | 562 |
| 562 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 563 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |