| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 extern const char kChromeUIFlagsHost[]; | 104 extern const char kChromeUIFlagsHost[]; |
| 105 extern const char kChromeUIFlashHost[]; | 105 extern const char kChromeUIFlashHost[]; |
| 106 extern const char kChromeUIGpuInternalsHost[]; | 106 extern const char kChromeUIGpuInternalsHost[]; |
| 107 extern const char kChromeUIHistory2Host[]; | 107 extern const char kChromeUIHistory2Host[]; |
| 108 extern const char kChromeUIHistoryHost[]; | 108 extern const char kChromeUIHistoryHost[]; |
| 109 extern const char kChromeUIKeyboardHost[]; | 109 extern const char kChromeUIKeyboardHost[]; |
| 110 extern const char kChromeUINetInternalsHost[]; | 110 extern const char kChromeUINetInternalsHost[]; |
| 111 extern const char kChromeUINewTabHost[]; | 111 extern const char kChromeUINewTabHost[]; |
| 112 extern const char kChromeUIPluginsHost[]; | 112 extern const char kChromeUIPluginsHost[]; |
| 113 extern const char kChromeUIPrintHost[]; | 113 extern const char kChromeUIPrintHost[]; |
| 114 extern const char kChromeUIQuotaInternalsHost[]; |
| 114 extern const char kChromeUIResourcesHost[]; | 115 extern const char kChromeUIResourcesHost[]; |
| 115 extern const char kChromeUIScreenshotPath[]; | 116 extern const char kChromeUIScreenshotPath[]; |
| 116 extern const char kChromeUISettingsHost[]; | 117 extern const char kChromeUISettingsHost[]; |
| 117 extern const char kChromeUISyncInternalsHost[]; | 118 extern const char kChromeUISyncInternalsHost[]; |
| 118 extern const char kChromeUISyncResourcesHost[]; | 119 extern const char kChromeUISyncResourcesHost[]; |
| 119 extern const char kChromeUITextfieldsHost[]; | 120 extern const char kChromeUITextfieldsHost[]; |
| 120 extern const char kChromeUIThemePath[]; | 121 extern const char kChromeUIThemePath[]; |
| 121 extern const char kChromeUIThumbnailPath[]; | 122 extern const char kChromeUIThumbnailPath[]; |
| 122 | 123 |
| 123 #if defined(OS_CHROMEOS) | 124 #if defined(OS_CHROMEOS) |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 156 |
| 156 // Cloud Print dialog URL components. | 157 // Cloud Print dialog URL components. |
| 157 extern const char kCloudPrintResourcesURL[]; | 158 extern const char kCloudPrintResourcesURL[]; |
| 158 extern const char kCloudPrintResourcesHost[]; | 159 extern const char kCloudPrintResourcesHost[]; |
| 159 extern const char kCloudPrintSetupHost[]; | 160 extern const char kCloudPrintSetupHost[]; |
| 160 | 161 |
| 161 // Network related URLs. | 162 // Network related URLs. |
| 162 extern const char kNetworkViewCacheURL[]; | 163 extern const char kNetworkViewCacheURL[]; |
| 163 extern const char kNetworkViewInternalsURL[]; | 164 extern const char kNetworkViewInternalsURL[]; |
| 164 | 165 |
| 166 // Quota related URL. |
| 167 extern const char kQuotaInternalsURL[]; |
| 168 |
| 165 // Sync related URLs. | 169 // Sync related URLs. |
| 166 extern const char kSyncViewInternalsURL[]; | 170 extern const char kSyncViewInternalsURL[]; |
| 167 extern const char kSyncGoogleDashboardURL[]; | 171 extern const char kSyncGoogleDashboardURL[]; |
| 168 | 172 |
| 169 // GPU related URLs | 173 // GPU related URLs |
| 170 extern const char kGpuInternalsURL[]; | 174 extern const char kGpuInternalsURL[]; |
| 171 | 175 |
| 172 // Options sub-pages. | 176 // Options sub-pages. |
| 173 extern const char kAdvancedOptionsSubPage[]; | 177 extern const char kAdvancedOptionsSubPage[]; |
| 174 extern const char kAutofillSubPage[]; | 178 extern const char kAutofillSubPage[]; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 // The URL for the "Learn more" page for the blocked plugin infobar. | 222 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 219 extern const char kBlockedPluginLearnMoreURL[]; | 223 extern const char kBlockedPluginLearnMoreURL[]; |
| 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_ |
| OLD | NEW |