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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 extern const char kChromeUIStatsHost[]; | 157 extern const char kChromeUIStatsHost[]; |
158 extern const char kChromeUISyncHost[]; | 158 extern const char kChromeUISyncHost[]; |
159 extern const char kChromeUISyncInternalsHost[]; | 159 extern const char kChromeUISyncInternalsHost[]; |
160 extern const char kChromeUISyncResourcesHost[]; | 160 extern const char kChromeUISyncResourcesHost[]; |
161 extern const char kChromeUITasksHost[]; | 161 extern const char kChromeUITasksHost[]; |
162 extern const char kChromeUITCMallocHost[]; | 162 extern const char kChromeUITCMallocHost[]; |
163 extern const char kChromeUITextfieldsHost[]; | 163 extern const char kChromeUITextfieldsHost[]; |
164 extern const char kChromeUITermsHost[]; | 164 extern const char kChromeUITermsHost[]; |
165 extern const char kChromeUITouchIconHost[]; | 165 extern const char kChromeUITouchIconHost[]; |
166 extern const char kChromeUIVersionHost[]; | 166 extern const char kChromeUIVersionHost[]; |
| 167 extern const char kChromeUIWorkersHost[]; |
167 | 168 |
168 extern const char kChromeUIScreenshotPath[]; | 169 extern const char kChromeUIScreenshotPath[]; |
169 extern const char kChromeUIThemePath[]; | 170 extern const char kChromeUIThemePath[]; |
170 extern const char kChromeUIThumbnailPath[]; | 171 extern const char kChromeUIThumbnailPath[]; |
171 | 172 |
172 #if defined(OS_LINUX) | 173 #if defined(OS_LINUX) |
173 extern const char kChromeUILinuxProxyConfigHost[]; | 174 extern const char kChromeUILinuxProxyConfigHost[]; |
174 extern const char kChromeUISandboxHost[]; | 175 extern const char kChromeUISandboxHost[]; |
175 #endif | 176 #endif |
176 | 177 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 // The URL for the "Learn more" page for the blocked plugin infobar. | 259 // The URL for the "Learn more" page for the blocked plugin infobar. |
259 extern const char kBlockedPluginLearnMoreURL[]; | 260 extern const char kBlockedPluginLearnMoreURL[]; |
260 | 261 |
261 // Call near the beginning of startup to register Chrome's internal URLs that | 262 // Call near the beginning of startup to register Chrome's internal URLs that |
262 // should be parsed as "standard" with the googleurl library. | 263 // should be parsed as "standard" with the googleurl library. |
263 void RegisterChromeSchemes(); | 264 void RegisterChromeSchemes(); |
264 | 265 |
265 } // namespace chrome | 266 } // namespace chrome |
266 | 267 |
267 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 268 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |