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

Side by Side Diff: chrome/common/url_constants.h

Issue 150207: Foundations for Print Preview and Setup... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 9
10 namespace chrome { 10 namespace chrome {
11 11
12 // Canonical schemes you can use as input to GURL.SchemeIs(). 12 // Canonical schemes you can use as input to GURL.SchemeIs().
13 extern const char kAboutScheme[]; 13 extern const char kAboutScheme[];
14 extern const char kChromeInternalScheme[]; // Used for new tab page. 14 extern const char kChromeInternalScheme[]; // Used for new tab page.
15 extern const char kChromeUIScheme[]; // The scheme used for DOMUIContentses. 15 extern const char kChromeUIScheme[]; // The scheme used for DOMUIContentses.
16 extern const char kDataScheme[]; 16 extern const char kDataScheme[];
17 extern const char kExtensionScheme[]; 17 extern const char kExtensionScheme[];
18 extern const char kFileScheme[]; 18 extern const char kFileScheme[];
19 extern const char kFtpScheme[]; 19 extern const char kFtpScheme[];
20 extern const char kGearsScheme[]; 20 extern const char kGearsScheme[];
21 extern const char kHttpScheme[]; 21 extern const char kHttpScheme[];
22 extern const char kHttpsScheme[]; 22 extern const char kHttpsScheme[];
23 extern const char kJavaScriptScheme[]; 23 extern const char kJavaScriptScheme[];
24 extern const char kMailToScheme[]; 24 extern const char kMailToScheme[];
25 extern const char kPrintScheme[];
25 extern const char kUserScriptScheme[]; 26 extern const char kUserScriptScheme[];
26 extern const char kViewCacheScheme[]; 27 extern const char kViewCacheScheme[];
27 extern const char kViewSourceScheme[]; 28 extern const char kViewSourceScheme[];
28 29
29 // Used to separate a standard scheme and the hostname: "://". 30 // Used to separate a standard scheme and the hostname: "://".
30 extern const char kStandardSchemeSeparator[]; 31 extern const char kStandardSchemeSeparator[];
31 32
32 // About URLs (including schmes). 33 // About URLs (including schmes).
33 extern const char kAboutBlankURL[]; 34 extern const char kAboutBlankURL[];
34 extern const char kAboutBrowserCrash[]; 35 extern const char kAboutBrowserCrash[];
(...skipping 22 matching lines...) Expand all
57 extern const char kChromeUIFavIconPath[]; 58 extern const char kChromeUIFavIconPath[];
58 extern const char kChromeUIHistoryHost[]; 59 extern const char kChromeUIHistoryHost[];
59 extern const char kChromeUIInspectorHost[]; 60 extern const char kChromeUIInspectorHost[];
60 extern const char kChromeUINewTabHost[]; 61 extern const char kChromeUINewTabHost[];
61 extern const char kChromeUIThumbnailPath[]; 62 extern const char kChromeUIThumbnailPath[];
62 extern const char kChromeUIThemePath[]; 63 extern const char kChromeUIThemePath[];
63 64
64 } // namespace chrome 65 } // namespace chrome
65 66
66 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 67 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698