| Index: content/common/url_constants.cc
|
| ===================================================================
|
| --- content/common/url_constants.cc (revision 0)
|
| +++ content/common/url_constants.cc (revision 0)
|
| @@ -0,0 +1,34 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/common/url_constants.h"
|
| +
|
| +namespace chrome {
|
| +
|
| +const char kAboutScheme[] = "about";
|
| +const char kBlobScheme[] = "blob";
|
| +const char kChromeDevToolsScheme[] = "chrome-devtools";
|
| +const char kChromeInternalScheme[] = "chrome-internal";
|
| +const char kChromeUIScheme[] = "chrome";
|
| +const char kDataScheme[] = "data";
|
| +const char kExtensionScheme[] = "chrome-extension";
|
| +const char kFileScheme[] = "file";
|
| +const char kFileSystemScheme[] = "filesystem";
|
| +const char kFtpScheme[] = "ftp";
|
| +const char kHttpScheme[] = "http";
|
| +const char kHttpsScheme[] = "https";
|
| +const char kJavaScriptScheme[] = "javascript";
|
| +const char kMailToScheme[] = "mailto";
|
| +const char kMetadataScheme[] = "metadata";
|
| +const char kUserScriptScheme[] = "chrome-user-script";
|
| +const char kViewSourceScheme[] = "view-source";
|
| +
|
| +const char kStandardSchemeSeparator[] = "://";
|
| +
|
| +const char kAboutBlankURL[] = "about:blank";
|
| +const char kAboutCrashURL[] = "about:crash";
|
| +
|
| +const char kUnreachableWebDataURL[] = "chrome://chromewebdata/";
|
| +
|
| +} // namespace chrome
|
|
|
| Property changes on: content\common\url_constants.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|