blob: 110c6a7b22d0e244b4cfd77bdb8d537ee7d21c9b [file] [log] [blame]
[email protected]e8ca69c2014-05-07 15:31:191// 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
[email protected]8e09c7af2014-06-10 11:46:179const char kAboutBlankURL[] = "about:blank";
10
clamyeff92522017-01-23 22:48:5611const char kAboutBlankPath[] = "blank";
12const char kAboutBlankWithHashPath[] = "blank/";
13
[email protected]8e09c7af2014-06-10 11:46:1714const char kAboutScheme[] = "about";
[email protected]cca6f392014-05-28 21:32:2615const char kBlobScheme[] = "blob";
qinmin120a1552014-11-26 03:02:1616const char kContentScheme[] = "content";
blundell5ef36cb2016-06-27 15:37:1417const char kContentIDScheme[] = "cid";
[email protected]cca6f392014-05-28 21:32:2618const char kDataScheme[] = "data";
19const char kFileScheme[] = "file";
20const char kFileSystemScheme[] = "filesystem";
21const char kFtpScheme[] = "ftp";
[email protected]08dc7052014-06-18 07:57:4922const char kGopherScheme[] = "gopher";
[email protected]e8ca69c2014-05-07 15:31:1923const char kHttpScheme[] = "http";
24const char kHttpsScheme[] = "https";
[email protected]cca6f392014-05-28 21:32:2625const char kJavaScriptScheme[] = "javascript";
26const char kMailToScheme[] = "mailto";
[email protected]9d5877e2014-06-02 07:34:3527const char kWsScheme[] = "ws";
28const char kWssScheme[] = "wss";
[email protected]e8ca69c2014-05-07 15:31:1929
[email protected]fb4fe0952014-06-05 09:44:2430const char kStandardSchemeSeparator[] = "://";
31
Daniel Chengef9f4b72017-10-18 08:56:1732const size_t kMaxURLChars = 2 * 1024 * 1024;
33
[email protected]e8ca69c2014-05-07 15:31:1934} // namespace url