Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/common/url_constants.cc

Issue 2130293003: Change OOMs to raise custom exception rather than breakpoint on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tab_util.cc ('k') | content/browser/frame_host/debug_urls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698