| 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 content::kChromeUIKillURL, | 740 content::kChromeUIKillURL, |
| 741 content::kChromeUIHangURL, | 741 content::kChromeUIHangURL, |
| 742 content::kChromeUIShorthangURL, | 742 content::kChromeUIShorthangURL, |
| 743 content::kChromeUIGpuCleanURL, | 743 content::kChromeUIGpuCleanURL, |
| 744 content::kChromeUIGpuCrashURL, | 744 content::kChromeUIGpuCrashURL, |
| 745 content::kChromeUIGpuHangURL, | 745 content::kChromeUIGpuHangURL, |
| 746 content::kChromeUIMemoryExhaustURL, | 746 content::kChromeUIMemoryExhaustURL, |
| 747 content::kChromeUIPpapiFlashCrashURL, | 747 content::kChromeUIPpapiFlashCrashURL, |
| 748 content::kChromeUIPpapiFlashHangURL, | 748 content::kChromeUIPpapiFlashHangURL, |
| 749 #if defined(OS_ANDROID) | 749 #if defined(OS_ANDROID) |
| 750 content::kChromeUIGpuJavaCrashURL, |
| 750 chrome::kChromeUIJavaCrashURL, | 751 chrome::kChromeUIJavaCrashURL, |
| 751 #endif | 752 #endif |
| 752 chrome::kChromeUIQuitURL, | 753 chrome::kChromeUIQuitURL, |
| 753 chrome::kChromeUIRestartURL}; | 754 chrome::kChromeUIRestartURL}; |
| 754 const int kNumberOfChromeDebugURLs = | 755 const int kNumberOfChromeDebugURLs = |
| 755 static_cast<int>(arraysize(kChromeDebugURLs)); | 756 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 756 | 757 |
| 757 const char kChromeNativeScheme[] = "chrome-native"; | 758 const char kChromeNativeScheme[] = "chrome-native"; |
| 758 | 759 |
| 759 const char kChromeSearchScheme[] = "chrome-search"; | 760 const char kChromeSearchScheme[] = "chrome-search"; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 #endif | 811 #endif |
| 811 | 812 |
| 812 const char kChooserUsbOverviewURL[] = | 813 const char kChooserUsbOverviewURL[] = |
| 813 "https://support.google.com/chrome?p=webusb"; | 814 "https://support.google.com/chrome?p=webusb"; |
| 814 | 815 |
| 815 #if defined(OS_CHROMEOS) | 816 #if defined(OS_CHROMEOS) |
| 816 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 817 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 817 #endif | 818 #endif |
| 818 | 819 |
| 819 } // namespace chrome | 820 } // namespace chrome |
| OLD | NEW |