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.
5 #ifndef URL_URL_CONSTANTS_H_
6 #define URL_URL_CONSTANTS_H_
8 #include "url/url_export.h"
12 URL_EXPORT
extern const char kAboutBlankURL
[];
14 URL_EXPORT
extern const char kAboutScheme
[];
15 URL_EXPORT
extern const char kBlobScheme
[];
16 // The content scheme is specific to Android for identifying a stored file.
17 URL_EXPORT
extern const char kContentScheme
[];
18 URL_EXPORT
extern const char kDataScheme
[];
19 URL_EXPORT
extern const char kFileScheme
[];
20 URL_EXPORT
extern const char kFileSystemScheme
[];
21 URL_EXPORT
extern const char kFtpScheme
[];
22 URL_EXPORT
extern const char kGopherScheme
[];
23 URL_EXPORT
extern const char kHttpScheme
[];
24 URL_EXPORT
extern const char kHttpsScheme
[];
25 URL_EXPORT
extern const char kJavaScriptScheme
[];
26 URL_EXPORT
extern const char kMailToScheme
[];
27 URL_EXPORT
extern const char kWsScheme
[];
28 URL_EXPORT
extern const char kWssScheme
[];
30 // Used to separate a standard scheme and the hostname: "://".
31 URL_EXPORT
extern const char kStandardSchemeSeparator
[];
35 #endif // URL_URL_CONSTANTS_H_