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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 extern const char kChromeUIFlagsHost[]; | 105 extern const char kChromeUIFlagsHost[]; |
106 extern const char kChromeUIFlashHost[]; | 106 extern const char kChromeUIFlashHost[]; |
107 extern const char kChromeUIGpuInternalsHost[]; | 107 extern const char kChromeUIGpuInternalsHost[]; |
108 extern const char kChromeUIHistory2Host[]; | 108 extern const char kChromeUIHistory2Host[]; |
109 extern const char kChromeUIHistoryHost[]; | 109 extern const char kChromeUIHistoryHost[]; |
110 extern const char kChromeUIKeyboardHost[]; | 110 extern const char kChromeUIKeyboardHost[]; |
111 extern const char kChromeUINetInternalsHost[]; | 111 extern const char kChromeUINetInternalsHost[]; |
112 extern const char kChromeUINewTabHost[]; | 112 extern const char kChromeUINewTabHost[]; |
113 extern const char kChromeUIPluginsHost[]; | 113 extern const char kChromeUIPluginsHost[]; |
114 extern const char kChromeUIPrintHost[]; | 114 extern const char kChromeUIPrintHost[]; |
| 115 extern const char kChromeUIQuotaInternalsHost[]; |
115 extern const char kChromeUIResourcesHost[]; | 116 extern const char kChromeUIResourcesHost[]; |
116 extern const char kChromeUIScreenshotPath[]; | 117 extern const char kChromeUIScreenshotPath[]; |
117 extern const char kChromeUISettingsHost[]; | 118 extern const char kChromeUISettingsHost[]; |
118 extern const char kChromeUISyncInternalsHost[]; | 119 extern const char kChromeUISyncInternalsHost[]; |
119 extern const char kChromeUISyncResourcesHost[]; | 120 extern const char kChromeUISyncResourcesHost[]; |
120 extern const char kChromeUITextfieldsHost[]; | 121 extern const char kChromeUITextfieldsHost[]; |
121 extern const char kChromeUIThemePath[]; | 122 extern const char kChromeUIThemePath[]; |
122 extern const char kChromeUIThumbnailPath[]; | 123 extern const char kChromeUIThumbnailPath[]; |
123 | 124 |
124 #if defined(OS_CHROMEOS) | 125 #if defined(OS_CHROMEOS) |
(...skipping 29 matching lines...) Expand all Loading... |
154 | 155 |
155 // Cloud Print dialog URL components. | 156 // Cloud Print dialog URL components. |
156 extern const char kCloudPrintResourcesURL[]; | 157 extern const char kCloudPrintResourcesURL[]; |
157 extern const char kCloudPrintResourcesHost[]; | 158 extern const char kCloudPrintResourcesHost[]; |
158 extern const char kCloudPrintSetupHost[]; | 159 extern const char kCloudPrintSetupHost[]; |
159 | 160 |
160 // Network related URLs. | 161 // Network related URLs. |
161 extern const char kNetworkViewCacheURL[]; | 162 extern const char kNetworkViewCacheURL[]; |
162 extern const char kNetworkViewInternalsURL[]; | 163 extern const char kNetworkViewInternalsURL[]; |
163 | 164 |
| 165 // Quota related URL. |
| 166 extern const char kQuotaInternalsURL[]; |
| 167 |
164 // Sync related URLs. | 168 // Sync related URLs. |
165 extern const char kSyncViewInternalsURL[]; | 169 extern const char kSyncViewInternalsURL[]; |
166 extern const char kSyncGoogleDashboardURL[]; | 170 extern const char kSyncGoogleDashboardURL[]; |
167 | 171 |
168 // GPU related URLs | 172 // GPU related URLs |
169 extern const char kGpuInternalsURL[]; | 173 extern const char kGpuInternalsURL[]; |
170 | 174 |
171 // Options sub-pages. | 175 // Options sub-pages. |
172 extern const char kAdvancedOptionsSubPage[]; | 176 extern const char kAdvancedOptionsSubPage[]; |
173 extern const char kAutofillSubPage[]; | 177 extern const char kAutofillSubPage[]; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 // The URL for the "Learn more" page for the blocked plugin infobar. | 221 // The URL for the "Learn more" page for the blocked plugin infobar. |
218 extern const char kBlockedPluginLearnMoreURL[]; | 222 extern const char kBlockedPluginLearnMoreURL[]; |
219 | 223 |
220 // Call near the beginning of startup to register Chrome's internal URLs that | 224 // Call near the beginning of startup to register Chrome's internal URLs that |
221 // should be parsed as "standard" with the googleurl library. | 225 // should be parsed as "standard" with the googleurl library. |
222 void RegisterChromeSchemes(); | 226 void RegisterChromeSchemes(); |
223 | 227 |
224 } // namespace chrome | 228 } // namespace chrome |
225 | 229 |
226 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 230 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |