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