Home | History | Annotate | Download | only in url
      1 // Copyright 2014 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 "url/url_constants.h"
      6 
      7 namespace url {
      8 
      9 const char kAboutBlankURL[] = "about:blank";
     10 
     11 const char kAboutScheme[] = "about";
     12 const char kBlobScheme[] = "blob";
     13 const char kDataScheme[] = "data";
     14 const char kFileScheme[] = "file";
     15 const char kFileSystemScheme[] = "filesystem";
     16 const char kFtpScheme[] = "ftp";
     17 const char kGopherScheme[] = "gopher";
     18 const char kHttpScheme[] = "http";
     19 const char kHttpsScheme[] = "https";
     20 const char kJavaScriptScheme[] = "javascript";
     21 const char kMailToScheme[] = "mailto";
     22 const char kWsScheme[] = "ws";
     23 const char kWssScheme[] = "wss";
     24 
     25 const char kStandardSchemeSeparator[] = "://";
     26 
     27 }  // namespace url
     28