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 "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 Loading... |
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 |
OLD | NEW |