James Robinson | 646469d | 2014-10-03 15:33:28 -0700 | [diff] [blame] | 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 | #include "url/url_constants.h" |
| 6 | |
| 7 | namespace url { |
| 8 | |
| 9 | const char kAboutBlankURL[] = "about:blank"; |
| 10 | |
| 11 | const char kAboutScheme[] = "about"; |
| 12 | const char kBlobScheme[] = "blob"; |
James Robinson | 6a64b81 | 2014-12-03 13:38:42 -0800 | [diff] [blame] | 13 | const char kContentScheme[] = "content"; |
James Robinson | 646469d | 2014-10-03 15:33:28 -0700 | [diff] [blame] | 14 | const char kDataScheme[] = "data"; |
| 15 | const char kFileScheme[] = "file"; |
| 16 | const char kFileSystemScheme[] = "filesystem"; |
| 17 | const char kFtpScheme[] = "ftp"; |
| 18 | const char kGopherScheme[] = "gopher"; |
| 19 | const char kHttpScheme[] = "http"; |
| 20 | const char kHttpsScheme[] = "https"; |
| 21 | const char kJavaScriptScheme[] = "javascript"; |
| 22 | const char kMailToScheme[] = "mailto"; |
| 23 | const char kWsScheme[] = "ws"; |
| 24 | const char kWssScheme[] = "wss"; |
| 25 | |
| 26 | const char kStandardSchemeSeparator[] = "://"; |
| 27 | |
| 28 | } // namespace url |