| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 extern const char kChromeUIDialogHost[]; | 114 extern const char kChromeUIDialogHost[]; |
| 115 extern const char kChromeUIDownloadsHost[]; | 115 extern const char kChromeUIDownloadsHost[]; |
| 116 extern const char kChromeUIExtensionIconHost[]; | 116 extern const char kChromeUIExtensionIconHost[]; |
| 117 extern const char kChromeUIExtensionsHost[]; | 117 extern const char kChromeUIExtensionsHost[]; |
| 118 extern const char kChromeUIFavIconHost[]; | 118 extern const char kChromeUIFavIconHost[]; |
| 119 extern const char kChromeUIFlagsHost[]; | 119 extern const char kChromeUIFlagsHost[]; |
| 120 extern const char kChromeUIGpuInternalsHost[]; | 120 extern const char kChromeUIGpuInternalsHost[]; |
| 121 extern const char kChromeUIHistory2Host[]; | 121 extern const char kChromeUIHistory2Host[]; |
| 122 extern const char kChromeUIHistoryHost[]; | 122 extern const char kChromeUIHistoryHost[]; |
| 123 extern const char kChromeUIKeyboardHost[]; | 123 extern const char kChromeUIKeyboardHost[]; |
| 124 extern const char kChromeUILoginHost[]; | |
| 125 extern const char kChromeUINetInternalsHost[]; | 124 extern const char kChromeUINetInternalsHost[]; |
| 126 extern const char kChromeUINewTabHost[]; | 125 extern const char kChromeUINewTabHost[]; |
| 127 extern const char kChromeUIPluginsHost[]; | 126 extern const char kChromeUIPluginsHost[]; |
| 128 extern const char kChromeUIPrintHost[]; | 127 extern const char kChromeUIPrintHost[]; |
| 129 extern const char kChromeUIRemotingHost[]; | 128 extern const char kChromeUIRemotingHost[]; |
| 130 extern const char kChromeUIRemotingResourcesHost[]; | 129 extern const char kChromeUIRemotingResourcesHost[]; |
| 131 extern const char kChromeUIResourcesHost[]; | 130 extern const char kChromeUIResourcesHost[]; |
| 132 extern const char kChromeUIScreenshotPath[]; | 131 extern const char kChromeUIScreenshotPath[]; |
| 133 extern const char kChromeUISettingsHost[]; | 132 extern const char kChromeUISettingsHost[]; |
| 134 extern const char kChromeUISyncInternalsHost[]; | 133 extern const char kChromeUISyncInternalsHost[]; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 146 extern const char kChromeUIMobileSetupHost[]; | 145 extern const char kChromeUIMobileSetupHost[]; |
| 147 extern const char kChromeUIRegisterPageHost[]; | 146 extern const char kChromeUIRegisterPageHost[]; |
| 148 extern const char kChromeUISlideshowHost[]; | 147 extern const char kChromeUISlideshowHost[]; |
| 149 extern const char kChromeUISystemInfoHost[]; | 148 extern const char kChromeUISystemInfoHost[]; |
| 150 extern const char kChromeUIMenu[]; | 149 extern const char kChromeUIMenu[]; |
| 151 extern const char kChromeUIWrenchMenu[]; | 150 extern const char kChromeUIWrenchMenu[]; |
| 152 extern const char kChromeUINetworkMenu[]; | 151 extern const char kChromeUINetworkMenu[]; |
| 153 extern const char kChromeUIUserImageHost[]; | 152 extern const char kChromeUIUserImageHost[]; |
| 154 #endif | 153 #endif |
| 155 | 154 |
| 155 #if defined(OS_CHROMEOS) && defined(TOUCH_UI) |
| 156 extern const char kChromeUILoginContainerHost[]; |
| 157 extern const char kChromeUILoginHost[]; |
| 158 #endif |
| 159 |
| 156 // Special URL used to start a navigation to an error page. | 160 // Special URL used to start a navigation to an error page. |
| 157 extern const char kUnreachableWebDataURL[]; | 161 extern const char kUnreachableWebDataURL[]; |
| 158 | 162 |
| 159 // AppCache related URL. | 163 // AppCache related URL. |
| 160 extern const char kAppCacheViewInternalsURL[]; | 164 extern const char kAppCacheViewInternalsURL[]; |
| 161 | 165 |
| 162 // Blob related URL. | 166 // Blob related URL. |
| 163 extern const char kBlobViewInternalsURL[]; | 167 extern const char kBlobViewInternalsURL[]; |
| 164 | 168 |
| 165 // Cloud Print dialog URL components. | 169 // Cloud Print dialog URL components. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. | 222 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. |
| 219 extern const char kOutdatedPluginLearnMoreURL[]; | 223 extern const char kOutdatedPluginLearnMoreURL[]; |
| 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 |