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

Side by Side Diff: content/public/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: use VLOG instead of printf 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/url_constants.h" 6 #include "content/public/common/url_constants.h"
7 7
8 namespace content { 8 namespace content {
9 9
10 // Before adding new chrome schemes please check with security@chromium.org. 10 // Before adding new chrome schemes please check with security@chromium.org.
(...skipping 28 matching lines...) Expand all
39 const char kChromeUIBrowserCrashURL[] = "chrome://inducebrowsercrashforrealz"; 39 const char kChromeUIBrowserCrashURL[] = "chrome://inducebrowsercrashforrealz";
40 const char kChromeUIBrowserUIHang[] = "chrome://uithreadhang"; 40 const char kChromeUIBrowserUIHang[] = "chrome://uithreadhang";
41 const char kChromeUICrashURL[] = "chrome://crash"; 41 const char kChromeUICrashURL[] = "chrome://crash";
42 const char kChromeUIDelayedBrowserUIHang[] = "chrome://delayeduithreadhang"; 42 const char kChromeUIDelayedBrowserUIHang[] = "chrome://delayeduithreadhang";
43 const char kChromeUIDumpURL[] = "chrome://crashdump"; 43 const char kChromeUIDumpURL[] = "chrome://crashdump";
44 const char kChromeUIGpuCleanURL[] = "chrome://gpuclean"; 44 const char kChromeUIGpuCleanURL[] = "chrome://gpuclean";
45 const char kChromeUIGpuCrashURL[] = "chrome://gpucrash"; 45 const char kChromeUIGpuCrashURL[] = "chrome://gpucrash";
46 const char kChromeUIGpuHangURL[] = "chrome://gpuhang"; 46 const char kChromeUIGpuHangURL[] = "chrome://gpuhang";
47 const char kChromeUIHangURL[] = "chrome://hang"; 47 const char kChromeUIHangURL[] = "chrome://hang";
48 const char kChromeUIKillURL[] = "chrome://kill"; 48 const char kChromeUIKillURL[] = "chrome://kill";
49 const char kChromeUIMemoryExhaustURL[] = "chrome://memory-exhaust";
49 const char kChromeUINetworkErrorURL[] = "chrome://network-error"; 50 const char kChromeUINetworkErrorURL[] = "chrome://network-error";
50 const char kChromeUINetworkErrorsListingURL[] = "chrome://network-errors"; 51 const char kChromeUINetworkErrorsListingURL[] = "chrome://network-errors";
51 const char kChromeUIPpapiFlashCrashURL[] = "chrome://ppapiflashcrash"; 52 const char kChromeUIPpapiFlashCrashURL[] = "chrome://ppapiflashcrash";
52 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang"; 53 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang";
53 54
54 // This error URL is loaded in normal web renderer processes, so it should not 55 // This error URL is loaded in normal web renderer processes, so it should not
55 // have a chrome:// scheme that might let it be confused with a WebUI page. 56 // have a chrome:// scheme that might let it be confused with a WebUI page.
56 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata"; 57 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata";
57 58
58 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/"; 59 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/";
59 const char kChromeUIResourcesURL[] = "chrome://resources/"; 60 const char kChromeUIResourcesURL[] = "chrome://resources/";
60 const char kChromeUIShorthangURL[] = "chrome://shorthang"; 61 const char kChromeUIShorthangURL[] = "chrome://shorthang";
61 62
62 } // namespace content 63 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698