Upload upstream chromium 67.0.3396
[platform/framework/web/chromium-efl.git] / url / url_constants.cc
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
7 namespace url {
8
9 const char kAboutBlankURL[] = "about:blank";
10
11 const char kAboutBlankPath[] = "blank";
12 const char kAboutBlankWithHashPath[] = "blank/";
13
14 const char kAboutScheme[] = "about";
15 const char kBlobScheme[] = "blob";
16 const char kContentScheme[] = "content";
17 const char kContentIDScheme[] = "cid";
18 const char kDataScheme[] = "data";
19 const char kFileScheme[] = "file";
20 const char kFileSystemScheme[] = "filesystem";
21 const char kFtpScheme[] = "ftp";
22 const char kGopherScheme[] = "gopher";
23 const char kHttpScheme[] = "http";
24 const char kHttpsScheme[] = "https";
25 const char kJavaScriptScheme[] = "javascript";
26 const char kMailToScheme[] = "mailto";
27 const char kWsScheme[] = "ws";
28 const char kWssScheme[] = "wss";
29
30 const char kStandardSchemeSeparator[] = "://";
31
32 const size_t kMaxURLChars = 2 * 1024 * 1024;
33
34 }  // namespace url