[email protected] | e8ca69c | 2014-05-07 15:31:19 | [diff] [blame] | 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 | #ifndef URL_URL_CONSTANTS_H_ | ||||
6 | #define URL_URL_CONSTANTS_H_ | ||||
7 | |||||
markdittmer | 67b71ea | 2016-03-03 22:40:03 | [diff] [blame] | 8 | #include <stddef.h> |
9 | |||||
[email protected] | e8ca69c | 2014-05-07 15:31:19 | [diff] [blame] | 10 | #include "url/url_export.h" |
11 | |||||
12 | namespace url { | ||||
13 | |||||
[email protected] | 8e09c7af | 2014-06-10 11:46:17 | [diff] [blame] | 14 | URL_EXPORT extern const char kAboutBlankURL[]; |
15 | |||||
clamy | eff9252 | 2017-01-23 22:48:56 | [diff] [blame] | 16 | URL_EXPORT extern const char kAboutBlankPath[]; |
17 | URL_EXPORT extern const char kAboutBlankWithHashPath[]; | ||||
18 | |||||
[email protected] | 8e09c7af | 2014-06-10 11:46:17 | [diff] [blame] | 19 | URL_EXPORT extern const char kAboutScheme[]; |
[email protected] | cca6f39 | 2014-05-28 21:32:26 | [diff] [blame] | 20 | URL_EXPORT extern const char kBlobScheme[]; |
qinmin | 120a155 | 2014-11-26 03:02:16 | [diff] [blame] | 21 | // The content scheme is specific to Android for identifying a stored file. |
22 | URL_EXPORT extern const char kContentScheme[]; | ||||
blundell | 5ef36cb4 | 2016-06-27 15:37:14 | [diff] [blame] | 23 | URL_EXPORT extern const char kContentIDScheme[]; |
[email protected] | cca6f39 | 2014-05-28 21:32:26 | [diff] [blame] | 24 | URL_EXPORT extern const char kDataScheme[]; |
25 | URL_EXPORT extern const char kFileScheme[]; | ||||
26 | URL_EXPORT extern const char kFileSystemScheme[]; | ||||
27 | URL_EXPORT extern const char kFtpScheme[]; | ||||
[email protected] | 08dc705 | 2014-06-18 07:57:49 | [diff] [blame] | 28 | URL_EXPORT extern const char kGopherScheme[]; |
[email protected] | e8ca69c | 2014-05-07 15:31:19 | [diff] [blame] | 29 | URL_EXPORT extern const char kHttpScheme[]; |
30 | URL_EXPORT extern const char kHttpsScheme[]; | ||||
[email protected] | cca6f39 | 2014-05-28 21:32:26 | [diff] [blame] | 31 | URL_EXPORT extern const char kJavaScriptScheme[]; |
32 | URL_EXPORT extern const char kMailToScheme[]; | ||||
[email protected] | 9d5877e | 2014-06-02 07:34:35 | [diff] [blame] | 33 | URL_EXPORT extern const char kWsScheme[]; |
34 | URL_EXPORT extern const char kWssScheme[]; | ||||
[email protected] | e8ca69c | 2014-05-07 15:31:19 | [diff] [blame] | 35 | |
[email protected] | fb4fe095 | 2014-06-05 09:44:24 | [diff] [blame] | 36 | // Used to separate a standard scheme and the hostname: "://". |
37 | URL_EXPORT extern const char kStandardSchemeSeparator[]; | ||||
38 | |||||
Daniel Cheng | ef9f4b7 | 2017-10-18 08:56:17 | [diff] [blame] | 39 | URL_EXPORT extern const size_t kMaxURLChars; |
markdittmer | 67b71ea | 2016-03-03 22:40:03 | [diff] [blame] | 40 | |
[email protected] | e8ca69c | 2014-05-07 15:31:19 | [diff] [blame] | 41 | } // namespace url |
42 | |||||
43 | #endif // URL_URL_CONSTANTS_H_ |