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