Move Translate browser-side IPC handling to the component.
[chromium-blink-merge.git] / url / url_constants.cc
blob9ef0e632693da6c222033dc5119c51b14e4010eb
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.
5 #include "url/url_constants.h"
7 namespace url {
9 const char kAboutBlankURL[] = "about:blank";
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";
25 const char kStandardSchemeSeparator[] = "://";
27 } // namespace url