| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 158 |
| 158 // Cloud Print dialog URL components. | 159 // Cloud Print dialog URL components. |
| 159 extern const char kCloudPrintResourcesURL[]; | 160 extern const char kCloudPrintResourcesURL[]; |
| 160 extern const char kCloudPrintResourcesHost[]; | 161 extern const char kCloudPrintResourcesHost[]; |
| 161 extern const char kCloudPrintSetupHost[]; | 162 extern const char kCloudPrintSetupHost[]; |
| 162 | 163 |
| 163 // Network related URLs. | 164 // Network related URLs. |
| 164 extern const char kNetworkViewCacheURL[]; | 165 extern const char kNetworkViewCacheURL[]; |
| 165 extern const char kNetworkViewInternalsURL[]; | 166 extern const char kNetworkViewInternalsURL[]; |
| 166 | 167 |
| 168 // Quota related URL. |
| 169 extern const char kQuotaInternalsURL[]; |
| 170 |
| 167 // Sync related URLs. | 171 // Sync related URLs. |
| 168 extern const char kSyncViewInternalsURL[]; | 172 extern const char kSyncViewInternalsURL[]; |
| 169 extern const char kSyncGoogleDashboardURL[]; | 173 extern const char kSyncGoogleDashboardURL[]; |
| 170 | 174 |
| 171 // GPU related URLs | 175 // GPU related URLs |
| 172 extern const char kGpuInternalsURL[]; | 176 extern const char kGpuInternalsURL[]; |
| 173 | 177 |
| 174 // Options sub-pages. | 178 // Options sub-pages. |
| 175 extern const char kAdvancedOptionsSubPage[]; | 179 extern const char kAdvancedOptionsSubPage[]; |
| 176 extern const char kAutofillSubPage[]; | 180 extern const char kAutofillSubPage[]; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 // The URL for the "Learn more" page for the blocked plugin infobar. | 224 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 221 extern const char kBlockedPluginLearnMoreURL[]; | 225 extern const char kBlockedPluginLearnMoreURL[]; |
| 222 | 226 |
| 223 // Call near the beginning of startup to register Chrome's internal URLs that | 227 // Call near the beginning of startup to register Chrome's internal URLs that |
| 224 // should be parsed as "standard" with the googleurl library. | 228 // should be parsed as "standard" with the googleurl library. |
| 225 void RegisterChromeSchemes(); | 229 void RegisterChromeSchemes(); |
| 226 | 230 |
| 227 } // namespace chrome | 231 } // namespace chrome |
| 228 | 232 |
| 229 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 233 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |