| 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> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "url/url_export.h" | 10 #include "url/url_export.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 URL_EXPORT extern const char kFileScheme[]; | 22 URL_EXPORT extern const char kFileScheme[]; |
| 23 URL_EXPORT extern const char kFileSystemScheme[]; | 23 URL_EXPORT extern const char kFileSystemScheme[]; |
| 24 URL_EXPORT extern const char kFtpScheme[]; | 24 URL_EXPORT extern const char kFtpScheme[]; |
| 25 URL_EXPORT extern const char kGopherScheme[]; | 25 URL_EXPORT extern const char kGopherScheme[]; |
| 26 URL_EXPORT extern const char kHttpScheme[]; | 26 URL_EXPORT extern const char kHttpScheme[]; |
| 27 URL_EXPORT extern const char kHttpsScheme[]; | 27 URL_EXPORT extern const char kHttpsScheme[]; |
| 28 URL_EXPORT extern const char kJavaScriptScheme[]; | 28 URL_EXPORT extern const char kJavaScriptScheme[]; |
| 29 URL_EXPORT extern const char kMailToScheme[]; | 29 URL_EXPORT extern const char kMailToScheme[]; |
| 30 URL_EXPORT extern const char kWsScheme[]; | 30 URL_EXPORT extern const char kWsScheme[]; |
| 31 URL_EXPORT extern const char kWssScheme[]; | 31 URL_EXPORT extern const char kWssScheme[]; |
| 32 // Below are the schemes for the network printers. For more info, see |
| 33 // https://www.cups.org/doc/network.html#PROTOCOLS. |
| 34 URL_EXPORT extern const char kPrinterIppScheme[]; |
| 35 URL_EXPORT extern const char kPrinterIppsScheme[]; |
| 36 URL_EXPORT extern const char kPrinterLpdScheme[]; |
| 37 URL_EXPORT extern const char kPrinterSocketScheme[]; |
| 32 | 38 |
| 33 // Used to separate a standard scheme and the hostname: "://". | 39 // Used to separate a standard scheme and the hostname: "://". |
| 34 URL_EXPORT extern const char kStandardSchemeSeparator[]; | 40 URL_EXPORT extern const char kStandardSchemeSeparator[]; |
| 35 | 41 |
| 36 URL_EXPORT extern const size_t kMaxURLChars; | 42 URL_EXPORT extern const size_t kMaxURLChars; |
| 37 | 43 |
| 38 } // namespace url | 44 } // namespace url |
| 39 | 45 |
| 40 #endif // URL_URL_CONSTANTS_H_ | 46 #endif // URL_URL_CONSTANTS_H_ |
| OLD | NEW |