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