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 "content/public/common/url_constants.h" | 5 #include "content/public/common/url_constants.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 const char kAboutScheme[] = "about"; | 9 const char kAboutScheme[] = "about"; |
10 const char kBlobScheme[] = "blob"; | 10 const char kBlobScheme[] = "blob"; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 const char kChromeUIWebRTCInternalsHost[] = "webrtc-internals"; | 43 const char kChromeUIWebRTCInternalsHost[] = "webrtc-internals"; |
44 | 44 |
45 const char kChromeUICrashURL[] = "chrome://crash"; | 45 const char kChromeUICrashURL[] = "chrome://crash"; |
46 const char kChromeUIGpuCleanURL[] = "chrome://gpuclean"; | 46 const char kChromeUIGpuCleanURL[] = "chrome://gpuclean"; |
47 const char kChromeUIGpuCrashURL[] = "chrome://gpucrash"; | 47 const char kChromeUIGpuCrashURL[] = "chrome://gpucrash"; |
48 const char kChromeUIGpuHangURL[] = "chrome://gpuhang"; | 48 const char kChromeUIGpuHangURL[] = "chrome://gpuhang"; |
49 const char kChromeUIHangURL[] = "chrome://hang"; | 49 const char kChromeUIHangURL[] = "chrome://hang"; |
50 const char kChromeUIKillURL[] = "chrome://kill"; | 50 const char kChromeUIKillURL[] = "chrome://kill"; |
51 const char kChromeUIPpapiFlashCrashURL[] = "chrome://ppapiflashcrash"; | 51 const char kChromeUIPpapiFlashCrashURL[] = "chrome://ppapiflashcrash"; |
52 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang"; | 52 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang"; |
| 53 const char kChromeUIServiceWorkerInternalsURL[] = |
| 54 "chrome://serviceworker-internals"; |
53 | 55 |
54 const char kStandardSchemeSeparator[] = "://"; | 56 const char kStandardSchemeSeparator[] = "://"; |
55 | 57 |
56 // This error URL is loaded in normal web renderer processes, so it should not | 58 // This error URL is loaded in normal web renderer processes, so it should not |
57 // have a chrome:// scheme that might let it be confused with a WebUI page. | 59 // have a chrome:// scheme that might let it be confused with a WebUI page. |
58 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata"; | 60 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata"; |
59 | 61 |
60 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/"; | 62 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/"; |
61 const char kChromeUIShorthangURL[] = "chrome://shorthang"; | 63 const char kChromeUIShorthangURL[] = "chrome://shorthang"; |
62 | 64 |
63 // This URL is loaded when a page is swapped out and replaced by a page in a | 65 // This URL is loaded when a page is swapped out and replaced by a page in a |
64 // different renderer process. It must have a unique origin that cannot be | 66 // different renderer process. It must have a unique origin that cannot be |
65 // scripted by other pages in the process. | 67 // scripted by other pages in the process. |
66 const char kSwappedOutURL[] = "swappedout://"; | 68 const char kSwappedOutURL[] = "swappedout://"; |
67 | 69 |
68 } // namespace content | 70 } // namespace content |
OLD | NEW |