chromium/url/url_constants.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef URL_URL_CONSTANTS_H_
#define URL_URL_CONSTANTS_H_

#include <stddef.h>

namespace url {

inline constexpr char kAboutBlankURL[] =;
inline constexpr char16_t kAboutBlankURL16[] =;
inline constexpr char kAboutSrcdocURL[] =;
inline constexpr char16_t kAboutSrcdocURL16[] =;

inline constexpr char kAboutBlankPath[] =;
inline constexpr char16_t kAboutBlankPath16[] =;
inline constexpr char kAboutSrcdocPath[] =;
inline constexpr char16_t kAboutSrcdocPath16[] =;

inline constexpr char kAboutScheme[] =;
inline constexpr char16_t kAboutScheme16[] =;
inline constexpr char kAndroidScheme[] =;
inline constexpr char kBlobScheme[] =;
inline constexpr char16_t kBlobScheme16[] =;
inline constexpr char kChromeosSteamScheme[] =;
inline constexpr char kContentScheme[] =;
inline constexpr char16_t kContentScheme16[] =;
inline constexpr char kContentIDScheme[] =;
inline constexpr char16_t kContentIDScheme16[] =;
inline constexpr char kDataScheme[] =;
inline constexpr char16_t kDataScheme16[] =;
inline constexpr char kDrivefsScheme[] =;
inline constexpr char kFileScheme[] =;
inline constexpr char16_t kFileScheme16[] =;
inline constexpr char kFileSystemScheme[] =;
inline constexpr char16_t kFileSystemScheme16[] =;
inline constexpr char kFtpScheme[] =;
inline constexpr char16_t kFtpScheme16[] =;
inline constexpr char kHttpScheme[] =;
inline constexpr char16_t kHttpScheme16[] =;
inline constexpr char kHttpsScheme[] =;
inline constexpr char16_t kHttpsScheme16[] =;
inline constexpr char kJavaScriptScheme[] =;
inline constexpr char16_t kJavaScriptScheme16[] =;
inline constexpr char kMailToScheme[] =;
inline constexpr char16_t kMailToScheme16[] =;
inline constexpr char kMaterializedViewScheme[] =;
inline constexpr char kSteamScheme[] =;
inline constexpr char kTelScheme[] =;
inline constexpr char16_t kTelScheme16[] =;
inline constexpr char kUrnScheme[] =;
inline constexpr char16_t kUrnScheme16[] =;
inline constexpr char kUuidInPackageScheme[] =;
inline constexpr char16_t kUuidInPackageScheme16[] =;
inline constexpr char kWebcalScheme[] =;
inline constexpr char16_t kWebcalScheme16[] =;
inline constexpr char kWsScheme[] =;
inline constexpr char16_t kWsScheme16[] =;
inline constexpr char kWssScheme[] =;
inline constexpr char16_t kWssScheme16[] =;

// Used to separate a standard scheme and the hostname: "://".
inline constexpr char kStandardSchemeSeparator[] =;
inline constexpr char16_t kStandardSchemeSeparator16[] =;

// Max GURL length passed between processes. See url::mojom::kMaxURLChars, which
// has the same value, for more details.
inline constexpr size_t kMaxURLChars =;

}  // namespace url

#endif  // URL_URL_CONSTANTS_H_