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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 extern const char kChromeUISyncHost[]; | 167 extern const char kChromeUISyncHost[]; |
168 extern const char kChromeUISyncInternalsHost[]; | 168 extern const char kChromeUISyncInternalsHost[]; |
169 extern const char kChromeUISyncPromoHost[]; | 169 extern const char kChromeUISyncPromoHost[]; |
170 extern const char kChromeUISyncResourcesHost[]; | 170 extern const char kChromeUISyncResourcesHost[]; |
171 extern const char kChromeUITaskManagerHost[]; | 171 extern const char kChromeUITaskManagerHost[]; |
172 extern const char kChromeUITCMallocHost[]; | 172 extern const char kChromeUITCMallocHost[]; |
173 extern const char kChromeUITermsHost[]; | 173 extern const char kChromeUITermsHost[]; |
174 extern const char kChromeUIThumbnailHost[]; | 174 extern const char kChromeUIThumbnailHost[]; |
175 extern const char kChromeUITouchIconHost[]; | 175 extern const char kChromeUITouchIconHost[]; |
176 extern const char kChromeUITracingHost[]; | 176 extern const char kChromeUITracingHost[]; |
177 extern const char kChromeUITrackingHost[]; | |
178 extern const char kChromeUIVersionHost[]; | 177 extern const char kChromeUIVersionHost[]; |
179 extern const char kChromeUIWorkersHost[]; | 178 extern const char kChromeUIWorkersHost[]; |
180 | 179 |
181 extern const char kChromeUIScreenshotPath[]; | 180 extern const char kChromeUIScreenshotPath[]; |
182 extern const char kChromeUIThemePath[]; | 181 extern const char kChromeUIThemePath[]; |
183 | 182 |
184 #if defined(OS_LINUX) || defined(OS_OPENBSD) | 183 #if defined(OS_LINUX) || defined(OS_OPENBSD) |
185 extern const char kChromeUILinuxProxyConfigHost[]; | 184 extern const char kChromeUILinuxProxyConfigHost[]; |
186 extern const char kChromeUISandboxHost[]; | 185 extern const char kChromeUISandboxHost[]; |
187 #endif | 186 #endif |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 void RegisterChromeSchemes(); | 307 void RegisterChromeSchemes(); |
309 | 308 |
310 #if defined(OS_CHROMEOS) | 309 #if defined(OS_CHROMEOS) |
311 // "Learn more" URL for the Cloud Print section under Options. | 310 // "Learn more" URL for the Cloud Print section under Options. |
312 extern const char kCloudPrintLearnMoreURL[]; | 311 extern const char kCloudPrintLearnMoreURL[]; |
313 #endif | 312 #endif |
314 | 313 |
315 } // namespace chrome | 314 } // namespace chrome |
316 | 315 |
317 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 316 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |