| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 #endif | 254 #endif |
| 255 | 255 |
| 256 #if defined(OS_ANDROID) | 256 #if defined(OS_ANDROID) |
| 257 extern const char kChromeUIContextualSearchPromoHost[]; | 257 extern const char kChromeUIContextualSearchPromoHost[]; |
| 258 extern const char kChromeUIOfflineInternalsURL[]; | 258 extern const char kChromeUIOfflineInternalsURL[]; |
| 259 extern const char kChromeUIPhysicalWebHost[]; | 259 extern const char kChromeUIPhysicalWebHost[]; |
| 260 extern const char kChromeUIPopularSitesInternalsHost[]; | 260 extern const char kChromeUIPopularSitesInternalsHost[]; |
| 261 extern const char kChromeUISnippetsInternalsHost[]; | 261 extern const char kChromeUISnippetsInternalsHost[]; |
| 262 #endif | 262 #endif |
| 263 | 263 |
| 264 #if defined(ENABLE_VR_SHELL) | 264 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) |
| 265 extern const char kChromeUIVrShellUIHost[]; | 265 extern const char kChromeUIVrShellUIHost[]; |
| 266 #endif | 266 #endif |
| 267 | 267 |
| 268 #if defined(OS_CHROMEOS) | 268 #if defined(OS_CHROMEOS) |
| 269 extern const char kChromeUIActivationMessageHost[]; | 269 extern const char kChromeUIActivationMessageHost[]; |
| 270 extern const char kChromeUIAppLaunchHost[]; | 270 extern const char kChromeUIAppLaunchHost[]; |
| 271 extern const char kChromeUIBluetoothPairingHost[]; | 271 extern const char kChromeUIBluetoothPairingHost[]; |
| 272 extern const char kChromeUICertificateManagerHost[]; | 272 extern const char kChromeUICertificateManagerHost[]; |
| 273 extern const char kChromeUIChooseMobileNetworkHost[]; | 273 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 274 extern const char kChromeUICryptohomeHost[]; | 274 extern const char kChromeUICryptohomeHost[]; |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 extern const char kChooserUsbOverviewURL[]; | 601 extern const char kChooserUsbOverviewURL[]; |
| 602 | 602 |
| 603 #if defined(OS_CHROMEOS) | 603 #if defined(OS_CHROMEOS) |
| 604 // The URL for EOL notification | 604 // The URL for EOL notification |
| 605 extern const char kEolNotificationURL[]; | 605 extern const char kEolNotificationURL[]; |
| 606 #endif | 606 #endif |
| 607 | 607 |
| 608 } // namespace chrome | 608 } // namespace chrome |
| 609 | 609 |
| 610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |