url_constants.cc revision cedac228d2dd51db4b79ea1e72c7f249408ee061
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";
18
19}  // namespace url
20