OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef URL_URL_CONSTANTS_H_ | 5 #ifndef URL_URL_CONSTANTS_H_ |
6 #define URL_URL_CONSTANTS_H_ | 6 #define URL_URL_CONSTANTS_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include "url/url_export.h" | 10 #include "url/url_export.h" |
9 | 11 |
10 namespace url { | 12 namespace url { |
11 | 13 |
12 URL_EXPORT extern const char kAboutBlankURL[]; | 14 URL_EXPORT extern const char kAboutBlankURL[]; |
13 | 15 |
14 URL_EXPORT extern const char kAboutScheme[]; | 16 URL_EXPORT extern const char kAboutScheme[]; |
15 URL_EXPORT extern const char kBlobScheme[]; | 17 URL_EXPORT extern const char kBlobScheme[]; |
16 // The content scheme is specific to Android for identifying a stored file. | 18 // The content scheme is specific to Android for identifying a stored file. |
17 URL_EXPORT extern const char kContentScheme[]; | 19 URL_EXPORT extern const char kContentScheme[]; |
18 URL_EXPORT extern const char kDataScheme[]; | 20 URL_EXPORT extern const char kDataScheme[]; |
19 URL_EXPORT extern const char kFileScheme[]; | 21 URL_EXPORT extern const char kFileScheme[]; |
20 URL_EXPORT extern const char kFileSystemScheme[]; | 22 URL_EXPORT extern const char kFileSystemScheme[]; |
21 URL_EXPORT extern const char kFtpScheme[]; | 23 URL_EXPORT extern const char kFtpScheme[]; |
22 URL_EXPORT extern const char kGopherScheme[]; | 24 URL_EXPORT extern const char kGopherScheme[]; |
23 URL_EXPORT extern const char kHttpScheme[]; | 25 URL_EXPORT extern const char kHttpScheme[]; |
24 URL_EXPORT extern const char kHttpsScheme[]; | 26 URL_EXPORT extern const char kHttpsScheme[]; |
25 URL_EXPORT extern const char kJavaScriptScheme[]; | 27 URL_EXPORT extern const char kJavaScriptScheme[]; |
26 URL_EXPORT extern const char kMailToScheme[]; | 28 URL_EXPORT extern const char kMailToScheme[]; |
27 URL_EXPORT extern const char kWsScheme[]; | 29 URL_EXPORT extern const char kWsScheme[]; |
28 URL_EXPORT extern const char kWssScheme[]; | 30 URL_EXPORT extern const char kWssScheme[]; |
29 | 31 |
30 // Used to separate a standard scheme and the hostname: "://". | 32 // Used to separate a standard scheme and the hostname: "://". |
31 URL_EXPORT extern const char kStandardSchemeSeparator[]; | 33 URL_EXPORT extern const char kStandardSchemeSeparator[]; |
32 | 34 |
| 35 URL_EXPORT extern const size_t kMaxURLChars; |
| 36 |
33 } // namespace url | 37 } // namespace url |
34 | 38 |
35 #endif // URL_URL_CONSTANTS_H_ | 39 #endif // URL_URL_CONSTANTS_H_ |
OLD | NEW |