| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 #if BUILDFLAG(ENABLE_SERVICE_DISCOVERY) | 740 #if BUILDFLAG(ENABLE_SERVICE_DISCOVERY) |
| 741 kChromeUIDevicesHost, | 741 kChromeUIDevicesHost, |
| 742 #endif | 742 #endif |
| 743 #if BUILDFLAG(ENABLE_WEBRTC) | 743 #if BUILDFLAG(ENABLE_WEBRTC) |
| 744 kChromeUIWebRtcLogsHost, | 744 kChromeUIWebRtcLogsHost, |
| 745 #endif | 745 #endif |
| 746 }; | 746 }; |
| 747 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); | 747 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); |
| 748 | 748 |
| 749 const char* const kChromeDebugURLs[] = {content::kChromeUIBadCastCrashURL, | 749 const char* const kChromeDebugURLs[] = {content::kChromeUIBadCastCrashURL, |
| 750 content::kChromeUIBrowserCrashURL, |
| 750 content::kChromeUICrashURL, | 751 content::kChromeUICrashURL, |
| 751 content::kChromeUIDumpURL, | 752 content::kChromeUIDumpURL, |
| 752 content::kChromeUIKillURL, | 753 content::kChromeUIKillURL, |
| 753 content::kChromeUIHangURL, | 754 content::kChromeUIHangURL, |
| 754 content::kChromeUIShorthangURL, | 755 content::kChromeUIShorthangURL, |
| 755 content::kChromeUIGpuCleanURL, | 756 content::kChromeUIGpuCleanURL, |
| 756 content::kChromeUIGpuCrashURL, | 757 content::kChromeUIGpuCrashURL, |
| 757 content::kChromeUIGpuHangURL, | 758 content::kChromeUIGpuHangURL, |
| 758 content::kChromeUIMemoryExhaustURL, | 759 content::kChromeUIMemoryExhaustURL, |
| 759 content::kChromeUIPpapiFlashCrashURL, | 760 content::kChromeUIPpapiFlashCrashURL, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 #endif | 824 #endif |
| 824 | 825 |
| 825 const char kChooserUsbOverviewURL[] = | 826 const char kChooserUsbOverviewURL[] = |
| 826 "https://support.google.com/chrome?p=webusb"; | 827 "https://support.google.com/chrome?p=webusb"; |
| 827 | 828 |
| 828 #if defined(OS_CHROMEOS) | 829 #if defined(OS_CHROMEOS) |
| 829 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 830 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 830 #endif | 831 #endif |
| 831 | 832 |
| 832 } // namespace chrome | 833 } // namespace chrome |
| OLD | NEW |