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