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

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

Issue 6579003: Add in chrome://login-container (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed some garbage that ended up in the CL and fixed a couple of headers that moved Created 9 years, 9 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_tests.gypi ('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) 2011 The Chromium Authors. All rights reserved. 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 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 #pragma once 9 #pragma once
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 extern const char kChromeUIDialogHost[]; 114 extern const char kChromeUIDialogHost[];
115 extern const char kChromeUIDownloadsHost[]; 115 extern const char kChromeUIDownloadsHost[];
116 extern const char kChromeUIExtensionIconHost[]; 116 extern const char kChromeUIExtensionIconHost[];
117 extern const char kChromeUIExtensionsHost[]; 117 extern const char kChromeUIExtensionsHost[];
118 extern const char kChromeUIFavIconHost[]; 118 extern const char kChromeUIFavIconHost[];
119 extern const char kChromeUIFlagsHost[]; 119 extern const char kChromeUIFlagsHost[];
120 extern const char kChromeUIGpuInternalsHost[]; 120 extern const char kChromeUIGpuInternalsHost[];
121 extern const char kChromeUIHistory2Host[]; 121 extern const char kChromeUIHistory2Host[];
122 extern const char kChromeUIHistoryHost[]; 122 extern const char kChromeUIHistoryHost[];
123 extern const char kChromeUIKeyboardHost[]; 123 extern const char kChromeUIKeyboardHost[];
124 extern const char kChromeUILoginHost[];
125 extern const char kChromeUINetInternalsHost[]; 124 extern const char kChromeUINetInternalsHost[];
126 extern const char kChromeUINewTabHost[]; 125 extern const char kChromeUINewTabHost[];
127 extern const char kChromeUIPluginsHost[]; 126 extern const char kChromeUIPluginsHost[];
128 extern const char kChromeUIPrintHost[]; 127 extern const char kChromeUIPrintHost[];
129 extern const char kChromeUIRemotingHost[]; 128 extern const char kChromeUIRemotingHost[];
130 extern const char kChromeUIRemotingResourcesHost[]; 129 extern const char kChromeUIRemotingResourcesHost[];
131 extern const char kChromeUIResourcesHost[]; 130 extern const char kChromeUIResourcesHost[];
132 extern const char kChromeUIScreenshotPath[]; 131 extern const char kChromeUIScreenshotPath[];
133 extern const char kChromeUISettingsHost[]; 132 extern const char kChromeUISettingsHost[];
134 extern const char kChromeUISyncInternalsHost[]; 133 extern const char kChromeUISyncInternalsHost[];
(...skipping 11 matching lines...) Expand all
146 extern const char kChromeUIMobileSetupHost[]; 145 extern const char kChromeUIMobileSetupHost[];
147 extern const char kChromeUIRegisterPageHost[]; 146 extern const char kChromeUIRegisterPageHost[];
148 extern const char kChromeUISlideshowHost[]; 147 extern const char kChromeUISlideshowHost[];
149 extern const char kChromeUISystemInfoHost[]; 148 extern const char kChromeUISystemInfoHost[];
150 extern const char kChromeUIMenu[]; 149 extern const char kChromeUIMenu[];
151 extern const char kChromeUIWrenchMenu[]; 150 extern const char kChromeUIWrenchMenu[];
152 extern const char kChromeUINetworkMenu[]; 151 extern const char kChromeUINetworkMenu[];
153 extern const char kChromeUIUserImageHost[]; 152 extern const char kChromeUIUserImageHost[];
154 #endif 153 #endif
155 154
155 #if defined(OS_CHROMEOS) && defined(TOUCH_UI)
156 extern const char kChromeUILoginContainerHost[];
157 extern const char kChromeUILoginHost[];
158 #endif
159
156 // Special URL used to start a navigation to an error page. 160 // Special URL used to start a navigation to an error page.
157 extern const char kUnreachableWebDataURL[]; 161 extern const char kUnreachableWebDataURL[];
158 162
159 // AppCache related URL. 163 // AppCache related URL.
160 extern const char kAppCacheViewInternalsURL[]; 164 extern const char kAppCacheViewInternalsURL[];
161 165
162 // Blob related URL. 166 // Blob related URL.
163 extern const char kBlobViewInternalsURL[]; 167 extern const char kBlobViewInternalsURL[];
164 168
165 // Cloud Print dialog URL components. 169 // Cloud Print dialog URL components.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. 222 // The URL for the "Learn more" page for the blocked/outdated plugin infobar.
219 extern const char kOutdatedPluginLearnMoreURL[]; 223 extern const char kOutdatedPluginLearnMoreURL[];
220 224
221 // Call near the beginning of startup to register Chrome's internal URLs that 225 // Call near the beginning of startup to register Chrome's internal URLs that
222 // should be parsed as "standard" with the googleurl library. 226 // should be parsed as "standard" with the googleurl library.
223 void RegisterChromeSchemes(); 227 void RegisterChromeSchemes();
224 228
225 } // namespace chrome 229 } // namespace chrome
226 230
227 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 231 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698