OLD | NEW |
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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 extern const char kChromeUIKeyboardHost[]; | 142 extern const char kChromeUIKeyboardHost[]; |
143 extern const char kChromeUIKillHost[]; | 143 extern const char kChromeUIKillHost[]; |
144 extern const char kChromeUIMediaInternalsHost[]; | 144 extern const char kChromeUIMediaInternalsHost[]; |
145 extern const char kChromeUIMemoryHost[]; | 145 extern const char kChromeUIMemoryHost[]; |
146 extern const char kChromeUIMemoryRedirectHost[]; | 146 extern const char kChromeUIMemoryRedirectHost[]; |
147 extern const char kChromeUINetInternalsHost[]; | 147 extern const char kChromeUINetInternalsHost[]; |
148 extern const char kChromeUINetworkViewCacheHost[]; | 148 extern const char kChromeUINetworkViewCacheHost[]; |
149 extern const char kChromeUINewTabHost[]; | 149 extern const char kChromeUINewTabHost[]; |
150 extern const char kChromeUIPluginsHost[]; | 150 extern const char kChromeUIPluginsHost[]; |
151 extern const char kChromeUIPrintHost[]; | 151 extern const char kChromeUIPrintHost[]; |
| 152 extern const char kChromeUIQuotaInternalsHost[]; |
152 extern const char kChromeUIResourcesHost[]; | 153 extern const char kChromeUIResourcesHost[]; |
153 extern const char kChromeUISessionsHost[]; | 154 extern const char kChromeUISessionsHost[]; |
154 extern const char kChromeUISettingsHost[]; | 155 extern const char kChromeUISettingsHost[]; |
155 extern const char kChromeUIShorthangHost[]; | 156 extern const char kChromeUIShorthangHost[]; |
156 extern const char kChromeUIStatsHost[]; | 157 extern const char kChromeUIStatsHost[]; |
157 extern const char kChromeUISyncHost[]; | 158 extern const char kChromeUISyncHost[]; |
158 extern const char kChromeUISyncInternalsHost[]; | 159 extern const char kChromeUISyncInternalsHost[]; |
159 extern const char kChromeUISyncResourcesHost[]; | 160 extern const char kChromeUISyncResourcesHost[]; |
160 extern const char kChromeUITasksHost[]; | 161 extern const char kChromeUITasksHost[]; |
161 extern const char kChromeUITCMallocHost[]; | 162 extern const char kChromeUITCMallocHost[]; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 // The URL for the "Learn more" page for the blocked plugin infobar. | 257 // The URL for the "Learn more" page for the blocked plugin infobar. |
257 extern const char kBlockedPluginLearnMoreURL[]; | 258 extern const char kBlockedPluginLearnMoreURL[]; |
258 | 259 |
259 // Call near the beginning of startup to register Chrome's internal URLs that | 260 // Call near the beginning of startup to register Chrome's internal URLs that |
260 // should be parsed as "standard" with the googleurl library. | 261 // should be parsed as "standard" with the googleurl library. |
261 void RegisterChromeSchemes(); | 262 void RegisterChromeSchemes(); |
262 | 263 |
263 } // namespace chrome | 264 } // namespace chrome |
264 | 265 |
265 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 266 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |