| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 kChromeUIOfflineInternalsURL[]; | 253 extern const char kChromeUIOfflineInternalsURL[]; |
| 254 extern const char kChromeUIPhysicalWebHost[]; | 254 extern const char kChromeUIPhysicalWebHost[]; |
| 255 extern const char kChromeUIPopularSitesInternalsHost[]; | 255 extern const char kChromeUIPopularSitesInternalsHost[]; |
| 256 extern const char kChromeUISnippetsInternalsHost[]; | 256 extern const char kChromeUISnippetsInternalsHost[]; |
| 257 #endif | 257 #endif |
| 258 | 258 |
| 259 #if defined(ENABLE_VR_SHELL) |
| 260 extern const char kChromeUIVrShellUIHost[]; |
| 261 #endif |
| 262 |
| 259 #if defined(OS_CHROMEOS) | 263 #if defined(OS_CHROMEOS) |
| 260 extern const char kChromeUIActivationMessageHost[]; | 264 extern const char kChromeUIActivationMessageHost[]; |
| 261 extern const char kChromeUIAppLaunchHost[]; | 265 extern const char kChromeUIAppLaunchHost[]; |
| 262 extern const char kChromeUIBluetoothPairingHost[]; | 266 extern const char kChromeUIBluetoothPairingHost[]; |
| 263 extern const char kChromeUICertificateManagerHost[]; | 267 extern const char kChromeUICertificateManagerHost[]; |
| 264 extern const char kChromeUIChooseMobileNetworkHost[]; | 268 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 265 extern const char kChromeUICryptohomeHost[]; | 269 extern const char kChromeUICryptohomeHost[]; |
| 266 extern const char kChromeUIDeviceEmulatorHost[]; | 270 extern const char kChromeUIDeviceEmulatorHost[]; |
| 267 extern const char kChromeUIFirstRunHost[]; | 271 extern const char kChromeUIFirstRunHost[]; |
| 268 extern const char kChromeUIKeyboardOverlayHost[]; | 272 extern const char kChromeUIKeyboardOverlayHost[]; |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 extern const char kChooserUsbOverviewURL[]; | 594 extern const char kChooserUsbOverviewURL[]; |
| 591 | 595 |
| 592 #if defined(OS_CHROMEOS) | 596 #if defined(OS_CHROMEOS) |
| 593 // The URL for EOL notification | 597 // The URL for EOL notification |
| 594 extern const char kEolNotificationURL[]; | 598 extern const char kEolNotificationURL[]; |
| 595 #endif | 599 #endif |
| 596 | 600 |
| 597 } // namespace chrome | 601 } // namespace chrome |
| 598 | 602 |
| 599 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 603 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |