Home | History | Annotate | Download | only in common
      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
      3 // found in the LICENSE file.
      4 
      5 #include "content/public/common/url_constants.h"
      6 
      7 namespace chrome {
      8 
      9 const char kAboutScheme[] = "about";
     10 const char kBlobScheme[] = "blob";
     11 
     12 // Before adding new chrome schemes please check with security (at) chromium.org.
     13 // There are security implications associated with introducing new schemes.
     14 const char kChromeDevToolsScheme[] = "chrome-devtools";
     15 const char kChromeInternalScheme[] = "chrome-internal";
     16 const char kChromeUIScheme[] = "chrome";
     17 const char kDataScheme[] = "data";
     18 const char kFileScheme[] = "file";
     19 const char kFileSystemScheme[] = "filesystem";
     20 const char kFtpScheme[] = "ftp";
     21 const char kGuestScheme[] = "chrome-guest";
     22 const char kHttpScheme[] = "http";
     23 const char kHttpsScheme[] = "https";
     24 const char kJavaScriptScheme[] = "javascript";
     25 }  // namespace chrome
     26 
     27 namespace content {
     28 
     29 const char kMailToScheme[] = "mailto";
     30 const char kMetadataScheme[] = "metadata";
     31 const char kSwappedOutScheme[] = "swappedout";
     32 const char kViewSourceScheme[] = "view-source";
     33 
     34 const char kAboutBlankURL[] = "about:blank";
     35 const char kAboutSrcDocURL[] = "about:srcdoc";
     36 
     37 const char kChromeUIAppCacheInternalsHost[] = "appcache-internals";
     38 const char kChromeUIIndexedDBInternalsHost[] = "indexeddb-internals";
     39 const char kChromeUIAccessibilityHost[] = "accessibility";
     40 const char kChromeUIBlobInternalsHost[] = "blob-internals";
     41 const char kChromeUIBrowserCrashHost[] = "inducebrowsercrashforrealz";
     42 const char kChromeUIGpuHost[] = "gpu";
     43 const char kChromeUIHistogramHost[] = "histograms";
     44 const char kChromeUIMediaInternalsHost[] = "media-internals";
     45 const char kChromeUINetworkViewCacheHost[] = "view-http-cache";
     46 const char kChromeUIResourcesHost[] = "resources";
     47 const char kChromeUITcmallocHost[] = "tcmalloc";
     48 const char kChromeUITracingHost[] = "tracing";
     49 const char kChromeUIWebRTCInternalsHost[] = "webrtc-internals";
     50 
     51 const char kChromeUICrashURL[] = "chrome://crash";
     52 const char kChromeUIGpuCleanURL[] = "chrome://gpuclean";
     53 const char kChromeUIGpuCrashURL[] = "chrome://gpucrash";
     54 const char kChromeUIGpuHangURL[] = "chrome://gpuhang";
     55 const char kChromeUIHangURL[] = "chrome://hang";
     56 const char kChromeUIKillURL[] = "chrome://kill";
     57 const char kChromeUIPpapiFlashCrashURL[] = "chrome://ppapiflashcrash";
     58 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang";
     59 
     60 const char kStandardSchemeSeparator[] = "://";
     61 
     62 // This error URL is loaded in normal web renderer processes, so it should not
     63 // have a chrome:// scheme that might let it be confused with a WebUI page.
     64 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata";
     65 
     66 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/";
     67 const char kChromeUIShorthangURL[] = "chrome://shorthang";
     68 
     69 // This URL is loaded when a page is swapped out and replaced by a page in a
     70 // different renderer process.  It must have a unique origin that cannot be
     71 // scripted by other pages in the process.
     72 const char kSwappedOutURL[] = "swappedout://";
     73 
     74 }  // namespace content
     75