blob: e06af29979f2cd6fe84d039944ad4dc87d8fa9d2 [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#ifndef URL_URL_CONSTANTS_H_
6#define URL_URL_CONSTANTS_H_
7
markdittmer67b71ea2016-03-03 22:40:038#include <stddef.h>
9
[email protected]e8ca69c2014-05-07 15:31:1910#include "url/url_export.h"
11
12namespace url {
13
[email protected]8e09c7af2014-06-10 11:46:1714URL_EXPORT extern const char kAboutBlankURL[];
15
clamyeff92522017-01-23 22:48:5616URL_EXPORT extern const char kAboutBlankPath[];
17URL_EXPORT extern const char kAboutBlankWithHashPath[];
18
[email protected]8e09c7af2014-06-10 11:46:1719URL_EXPORT extern const char kAboutScheme[];
[email protected]cca6f392014-05-28 21:32:2620URL_EXPORT extern const char kBlobScheme[];
qinmin120a1552014-11-26 03:02:1621// The content scheme is specific to Android for identifying a stored file.
22URL_EXPORT extern const char kContentScheme[];
blundell5ef36cb42016-06-27 15:37:1423URL_EXPORT extern const char kContentIDScheme[];
[email protected]cca6f392014-05-28 21:32:2624URL_EXPORT extern const char kDataScheme[];
25URL_EXPORT extern const char kFileScheme[];
26URL_EXPORT extern const char kFileSystemScheme[];
27URL_EXPORT extern const char kFtpScheme[];
[email protected]08dc7052014-06-18 07:57:4928URL_EXPORT extern const char kGopherScheme[];
[email protected]e8ca69c2014-05-07 15:31:1929URL_EXPORT extern const char kHttpScheme[];
30URL_EXPORT extern const char kHttpsScheme[];
[email protected]cca6f392014-05-28 21:32:2631URL_EXPORT extern const char kJavaScriptScheme[];
32URL_EXPORT extern const char kMailToScheme[];
[email protected]9d5877e2014-06-02 07:34:3533URL_EXPORT extern const char kWsScheme[];
34URL_EXPORT extern const char kWssScheme[];
[email protected]e8ca69c2014-05-07 15:31:1935
[email protected]fb4fe0952014-06-05 09:44:2436// Used to separate a standard scheme and the hostname: "://".
37URL_EXPORT extern const char kStandardSchemeSeparator[];
38
Daniel Chengef9f4b72017-10-18 08:56:1739URL_EXPORT extern const size_t kMaxURLChars;
markdittmer67b71ea2016-03-03 22:40:0340
[email protected]e8ca69c2014-05-07 15:31:1941} // namespace url
42
43#endif // URL_URL_CONSTANTS_H_