| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 262 |
| 263 #if defined(OS_ANDROID) | 263 #if defined(OS_ANDROID) |
| 264 extern const char kChromeUIContextualSearchPromoHost[]; | 264 extern const char kChromeUIContextualSearchPromoHost[]; |
| 265 extern const char kChromeUIOfflineInternalsURL[]; | 265 extern const char kChromeUIOfflineInternalsURL[]; |
| 266 extern const char kChromeUIPhysicalWebDiagnosticsHost[]; | 266 extern const char kChromeUIPhysicalWebDiagnosticsHost[]; |
| 267 extern const char kChromeUIPopularSitesInternalsHost[]; | 267 extern const char kChromeUIPopularSitesInternalsHost[]; |
| 268 extern const char kChromeUISnippetsInternalsHost[]; | 268 extern const char kChromeUISnippetsInternalsHost[]; |
| 269 extern const char kChromeUIWebApksHost[]; | 269 extern const char kChromeUIWebApksHost[]; |
| 270 #endif | 270 #endif |
| 271 | 271 |
| 272 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) | 272 #if defined(ENABLE_WEBVR) |
| 273 extern const char kChromeUIVrShellUIHost[]; | 273 extern const char kChromeUIVrShellUIHost[]; |
| 274 #endif | 274 #endif |
| 275 | 275 |
| 276 #if defined(OS_CHROMEOS) | 276 #if defined(OS_CHROMEOS) |
| 277 extern const char kChromeUIActivationMessageHost[]; | 277 extern const char kChromeUIActivationMessageHost[]; |
| 278 extern const char kChromeUIAppLaunchHost[]; | 278 extern const char kChromeUIAppLaunchHost[]; |
| 279 extern const char kChromeUIBluetoothPairingHost[]; | 279 extern const char kChromeUIBluetoothPairingHost[]; |
| 280 extern const char kChromeUICertificateManagerHost[]; | 280 extern const char kChromeUICertificateManagerHost[]; |
| 281 extern const char kChromeUIChooseMobileNetworkHost[]; | 281 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 282 extern const char kChromeUICryptohomeHost[]; | 282 extern const char kChromeUICryptohomeHost[]; |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 extern const char kChooserUsbOverviewURL[]; | 613 extern const char kChooserUsbOverviewURL[]; |
| 614 | 614 |
| 615 #if defined(OS_CHROMEOS) | 615 #if defined(OS_CHROMEOS) |
| 616 // The URL for EOL notification | 616 // The URL for EOL notification |
| 617 extern const char kEolNotificationURL[]; | 617 extern const char kEolNotificationURL[]; |
| 618 #endif | 618 #endif |
| 619 | 619 |
| 620 } // namespace chrome | 620 } // namespace chrome |
| 621 | 621 |
| 622 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 622 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |