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