blob: 3a423d2634201ba18aa1578db9f8500c2f3ff881 [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
16URL_EXPORT extern const char kAboutScheme[];
[email protected]cca6f392014-05-28 21:32:2617URL_EXPORT extern const char kBlobScheme[];
qinmin120a1552014-11-26 03:02:1618// The content scheme is specific to Android for identifying a stored file.
19URL_EXPORT extern const char kContentScheme[];
blundell5ef36cb42016-06-27 15:37:1420URL_EXPORT extern const char kContentIDScheme[];
[email protected]cca6f392014-05-28 21:32:2621URL_EXPORT extern const char kDataScheme[];
22URL_EXPORT extern const char kFileScheme[];
23URL_EXPORT extern const char kFileSystemScheme[];
24URL_EXPORT extern const char kFtpScheme[];
[email protected]08dc7052014-06-18 07:57:4925URL_EXPORT extern const char kGopherScheme[];
[email protected]e8ca69c2014-05-07 15:31:1926URL_EXPORT extern const char kHttpScheme[];
27URL_EXPORT extern const char kHttpsScheme[];
[email protected]cca6f392014-05-28 21:32:2628URL_EXPORT extern const char kJavaScriptScheme[];
29URL_EXPORT extern const char kMailToScheme[];
[email protected]9d5877e2014-06-02 07:34:3530URL_EXPORT extern const char kWsScheme[];
31URL_EXPORT extern const char kWssScheme[];
[email protected]e8ca69c2014-05-07 15:31:1932
[email protected]fb4fe0952014-06-05 09:44:2433// Used to separate a standard scheme and the hostname: "://".
34URL_EXPORT extern const char kStandardSchemeSeparator[];
35
markdittmer67b71ea2016-03-03 22:40:0336URL_EXPORT extern const size_t kMaxURLChars;
37
[email protected]e8ca69c2014-05-07 15:31:1938} // namespace url
39
40#endif // URL_URL_CONSTANTS_H_