| 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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 const char* const kChromeDebugURLs[] = { | 706 const char* const kChromeDebugURLs[] = { |
| 707 content::kChromeUIBadCastCrashURL, | 707 content::kChromeUIBadCastCrashURL, |
| 708 content::kChromeUICrashURL, | 708 content::kChromeUICrashURL, |
| 709 content::kChromeUIDumpURL, | 709 content::kChromeUIDumpURL, |
| 710 content::kChromeUIKillURL, | 710 content::kChromeUIKillURL, |
| 711 content::kChromeUIHangURL, | 711 content::kChromeUIHangURL, |
| 712 content::kChromeUIShorthangURL, | 712 content::kChromeUIShorthangURL, |
| 713 content::kChromeUIGpuCleanURL, | 713 content::kChromeUIGpuCleanURL, |
| 714 content::kChromeUIGpuCrashURL, | 714 content::kChromeUIGpuCrashURL, |
| 715 content::kChromeUIGpuHangURL, | 715 content::kChromeUIGpuHangURL, |
| 716 content::kChromeUIMemoryExhaustURL, |
| 716 content::kChromeUIPpapiFlashCrashURL, | 717 content::kChromeUIPpapiFlashCrashURL, |
| 717 content::kChromeUIPpapiFlashHangURL, | 718 content::kChromeUIPpapiFlashHangURL, |
| 718 chrome::kChromeUIQuitURL, | 719 chrome::kChromeUIQuitURL, |
| 719 chrome::kChromeUIRestartURL | 720 chrome::kChromeUIRestartURL |
| 720 }; | 721 }; |
| 721 const int kNumberOfChromeDebugURLs = | 722 const int kNumberOfChromeDebugURLs = |
| 722 static_cast<int>(arraysize(kChromeDebugURLs)); | 723 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 723 | 724 |
| 724 const char kChromeNativeScheme[] = "chrome-native"; | 725 const char kChromeNativeScheme[] = "chrome-native"; |
| 725 | 726 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 "https://support.google.com/chrome?p=bluetooth"; | 771 "https://support.google.com/chrome?p=bluetooth"; |
| 771 | 772 |
| 772 const char kChooserUsbOverviewURL[] = | 773 const char kChooserUsbOverviewURL[] = |
| 773 "https://support.google.com/chrome?p=webusb"; | 774 "https://support.google.com/chrome?p=webusb"; |
| 774 | 775 |
| 775 #if defined(OS_CHROMEOS) | 776 #if defined(OS_CHROMEOS) |
| 776 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 777 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 777 #endif | 778 #endif |
| 778 | 779 |
| 779 } // namespace chrome | 780 } // namespace chrome |
| OLD | NEW |