| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 278 |
| 279 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 279 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 280 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; | 280 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; |
| 281 const char kChromeUISandboxHost[] = "sandbox"; | 281 const char kChromeUISandboxHost[] = "sandbox"; |
| 282 #endif | 282 #endif |
| 283 | 283 |
| 284 #if defined(OS_ANDROID) | 284 #if defined(OS_ANDROID) |
| 285 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; | 285 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; |
| 286 const char kChromeUIOfflineInternalsHost[] = "offline-internals"; | 286 const char kChromeUIOfflineInternalsHost[] = "offline-internals"; |
| 287 const char kChromeUIPhysicalWebDiagnosticsHost[] = "physical-web-diagnostics"; | 287 const char kChromeUIPhysicalWebDiagnosticsHost[] = "physical-web-diagnostics"; |
| 288 const char kChromeUIPhysicalWebHost[] = "physical-web"; |
| 288 const char kChromeUIPopularSitesInternalsHost[] = "popular-sites-internals"; | 289 const char kChromeUIPopularSitesInternalsHost[] = "popular-sites-internals"; |
| 289 const char kChromeUISnippetsInternalsHost[] = "snippets-internals"; | 290 const char kChromeUISnippetsInternalsHost[] = "snippets-internals"; |
| 290 #endif | 291 #endif |
| 291 | 292 |
| 292 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) | 293 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) |
| 293 const char kChromeUIVrShellUIHost[] = "vr-shell-ui"; | 294 const char kChromeUIVrShellUIHost[] = "vr-shell-ui"; |
| 294 #endif | 295 #endif |
| 295 | 296 |
| 296 #if defined(OS_CHROMEOS) | 297 #if defined(OS_CHROMEOS) |
| 297 const char kChromeUIActivationMessageHost[] = "activationmessage"; | 298 const char kChromeUIActivationMessageHost[] = "activationmessage"; |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 #endif | 812 #endif |
| 812 | 813 |
| 813 const char kChooserUsbOverviewURL[] = | 814 const char kChooserUsbOverviewURL[] = |
| 814 "https://support.google.com/chrome?p=webusb"; | 815 "https://support.google.com/chrome?p=webusb"; |
| 815 | 816 |
| 816 #if defined(OS_CHROMEOS) | 817 #if defined(OS_CHROMEOS) |
| 817 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 818 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 818 #endif | 819 #endif |
| 819 | 820 |
| 820 } // namespace chrome | 821 } // namespace chrome |
| OLD | NEW |