Upload upstream chromium 67.0.3396
[platform/framework/web/chromium-efl.git] / url / url_constants.h
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
8 #include <stddef.h>
9
10 #include "url/url_export.h"
11
12 namespace url {
13
14 URL_EXPORT extern const char kAboutBlankURL[];
15
16 URL_EXPORT extern const char kAboutBlankPath[];
17 URL_EXPORT extern const char kAboutBlankWithHashPath[];
18
19 URL_EXPORT extern const char kAboutScheme[];
20 URL_EXPORT extern const char kBlobScheme[];
21 // The content scheme is specific to Android for identifying a stored file.
22 URL_EXPORT extern const char kContentScheme[];
23 URL_EXPORT extern const char kContentIDScheme[];
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[];
28 URL_EXPORT extern const char kGopherScheme[];
29 URL_EXPORT extern const char kHttpScheme[];
30 URL_EXPORT extern const char kHttpsScheme[];
31 URL_EXPORT extern const char kJavaScriptScheme[];
32 URL_EXPORT extern const char kMailToScheme[];
33 URL_EXPORT extern const char kWsScheme[];
34 URL_EXPORT extern const char kWssScheme[];
35
36 // Used to separate a standard scheme and the hostname: "://".
37 URL_EXPORT extern const char kStandardSchemeSeparator[];
38
39 URL_EXPORT extern const size_t kMaxURLChars;
40
41 }  // namespace url
42
43 #endif  // URL_URL_CONSTANTS_H_