Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: content/common/url_constants.cc

Issue 6874038: Remove the last Chrome dependencies from renderer, and enforce no more includes through DEPS. I ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 "content/common/url_constants.h"
6
7 namespace chrome {
8
9 const char kAboutScheme[] = "about";
10 const char kBlobScheme[] = "blob";
11 const char kChromeDevToolsScheme[] = "chrome-devtools";
12 const char kChromeInternalScheme[] = "chrome-internal";
13 const char kChromeUIScheme[] = "chrome";
14 const char kDataScheme[] = "data";
15 const char kExtensionScheme[] = "chrome-extension";
16 const char kFileScheme[] = "file";
17 const char kFileSystemScheme[] = "filesystem";
18 const char kFtpScheme[] = "ftp";
19 const char kHttpScheme[] = "http";
20 const char kHttpsScheme[] = "https";
21 const char kJavaScriptScheme[] = "javascript";
22 const char kMailToScheme[] = "mailto";
23 const char kMetadataScheme[] = "metadata";
24 const char kUserScriptScheme[] = "chrome-user-script";
25 const char kViewSourceScheme[] = "view-source";
26
27 const char kStandardSchemeSeparator[] = "://";
28
29 const char kAboutBlankURL[] = "about:blank";
30 const char kAboutCrashURL[] = "about:crash";
31
32 const char kUnreachableWebDataURL[] = "chrome://chromewebdata/";
33
34 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698