blob: 2dc1478a8e0e12bb3aac1a485380a5b07602958a [file] [log] [blame]
James Robinson646469d2014-10-03 15:33:28 -07001// 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";
James Robinson6a64b812014-12-03 13:38:42 -080013const char kContentScheme[] = "content";
James Robinson646469d2014-10-03 15:33:28 -070014const char kDataScheme[] = "data";
15const char kFileScheme[] = "file";
16const char kFileSystemScheme[] = "filesystem";
17const char kFtpScheme[] = "ftp";
18const char kGopherScheme[] = "gopher";
19const char kHttpScheme[] = "http";
20const char kHttpsScheme[] = "https";
21const char kJavaScriptScheme[] = "javascript";
22const char kMailToScheme[] = "mailto";
23const char kWsScheme[] = "ws";
24const char kWssScheme[] = "wss";
25
26const char kStandardSchemeSeparator[] = "://";
27
28} // namespace url