url_constants.cc revision 46d4c2bc3267f3f028f39e7e311b0f89aba2e4fd
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 kBlobScheme[] = "blob";
10const char kDataScheme[] = "data";
11const char kFileScheme[] = "file";
12const char kFileSystemScheme[] = "filesystem";
13const char kFtpScheme[] = "ftp";
14const char kHttpScheme[] = "http";
15const char kHttpsScheme[] = "https";
16const char kJavaScriptScheme[] = "javascript";
17const char kMailToScheme[] = "mailto";
18const char kWsScheme[] = "ws";
19const char kWssScheme[] = "wss";
20
21const char kStandardSchemeSeparator[] = "://";
22
23}  // namespace url
24