| 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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 #endif | 271 #endif |
| 272 | 272 |
| 273 #if defined(OS_ANDROID) | 273 #if defined(OS_ANDROID) |
| 274 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; | 274 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; |
| 275 const char kChromeUIOfflineInternalsHost[] = "offline-internals"; | 275 const char kChromeUIOfflineInternalsHost[] = "offline-internals"; |
| 276 const char kChromeUIPhysicalWebHost[] = "physical-web"; | 276 const char kChromeUIPhysicalWebHost[] = "physical-web"; |
| 277 const char kChromeUIPopularSitesInternalsHost[] = "popular-sites-internals"; | 277 const char kChromeUIPopularSitesInternalsHost[] = "popular-sites-internals"; |
| 278 const char kChromeUISnippetsInternalsHost[] = "snippets-internals"; | 278 const char kChromeUISnippetsInternalsHost[] = "snippets-internals"; |
| 279 #endif | 279 #endif |
| 280 | 280 |
| 281 #if defined(ENABLE_VR_SHELL) | 281 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) |
| 282 const char kChromeUIVrShellUIHost[] = "vr-shell-ui"; | 282 const char kChromeUIVrShellUIHost[] = "vr-shell-ui"; |
| 283 #endif | 283 #endif |
| 284 | 284 |
| 285 #if defined(OS_CHROMEOS) | 285 #if defined(OS_CHROMEOS) |
| 286 const char kChromeUIActivationMessageHost[] = "activationmessage"; | 286 const char kChromeUIActivationMessageHost[] = "activationmessage"; |
| 287 const char kChromeUIAppLaunchHost[] = "app-launch"; | 287 const char kChromeUIAppLaunchHost[] = "app-launch"; |
| 288 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; | 288 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; |
| 289 const char kChromeUICertificateManagerHost[] = "certificate-manager"; | 289 const char kChromeUICertificateManagerHost[] = "certificate-manager"; |
| 290 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; | 290 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; |
| 291 const char kChromeUICryptohomeHost[] = "cryptohome"; | 291 const char kChromeUICryptohomeHost[] = "cryptohome"; |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 #endif | 791 #endif |
| 792 | 792 |
| 793 const char kChooserUsbOverviewURL[] = | 793 const char kChooserUsbOverviewURL[] = |
| 794 "https://support.google.com/chrome?p=webusb"; | 794 "https://support.google.com/chrome?p=webusb"; |
| 795 | 795 |
| 796 #if defined(OS_CHROMEOS) | 796 #if defined(OS_CHROMEOS) |
| 797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 798 #endif | 798 #endif |
| 799 | 799 |
| 800 } // namespace chrome | 800 } // namespace chrome |
| OLD | NEW |