Increase test timeouts under MSan.
[chromium-blink-merge.git] / url / url_constants.cc
blobd5c57f487aff4de46f66abdad823b67376731787
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 #include "url/url_constants.h"
7 namespace url {
9 const char kAboutBlankURL[] = "about:blank";
11 const char kAboutScheme[] = "about";
12 const char kBlobScheme[] = "blob";
13 const char kDataScheme[] = "data";
14 const char kFileScheme[] = "file";
15 const char kFileSystemScheme[] = "filesystem";
16 const char kFtpScheme[] = "ftp";
17 const char kHttpScheme[] = "http";
18 const char kHttpsScheme[] = "https";
19 const char kJavaScriptScheme[] = "javascript";
20 const char kMailToScheme[] = "mailto";
21 const char kWsScheme[] = "ws";
22 const char kWssScheme[] = "wss";
24 const char kStandardSchemeSeparator[] = "://";
26 } // namespace url