| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 extern const char kChromeUIShorthangHost[]; | 140 extern const char kChromeUIShorthangHost[]; |
| 141 extern const char kChromeUIStatsHost[]; | 141 extern const char kChromeUIStatsHost[]; |
| 142 extern const char kChromeUISyncHost[]; | 142 extern const char kChromeUISyncHost[]; |
| 143 extern const char kChromeUISyncInternalsHost[]; | 143 extern const char kChromeUISyncInternalsHost[]; |
| 144 extern const char kChromeUISyncResourcesHost[]; | 144 extern const char kChromeUISyncResourcesHost[]; |
| 145 extern const char kChromeUITaskManagerHost[]; | 145 extern const char kChromeUITaskManagerHost[]; |
| 146 extern const char kChromeUITCMallocHost[]; | 146 extern const char kChromeUITCMallocHost[]; |
| 147 extern const char kChromeUITextfieldsHost[]; | 147 extern const char kChromeUITextfieldsHost[]; |
| 148 extern const char kChromeUITermsHost[]; | 148 extern const char kChromeUITermsHost[]; |
| 149 extern const char kChromeUITouchIconHost[]; | 149 extern const char kChromeUITouchIconHost[]; |
| 150 extern const char kChromeUITracingHost[]; |
| 150 extern const char kChromeUIVersionHost[]; | 151 extern const char kChromeUIVersionHost[]; |
| 151 extern const char kChromeUIWorkersHost[]; | 152 extern const char kChromeUIWorkersHost[]; |
| 152 | 153 |
| 153 extern const char kChromeUIScreenshotPath[]; | 154 extern const char kChromeUIScreenshotPath[]; |
| 154 extern const char kChromeUIThemePath[]; | 155 extern const char kChromeUIThemePath[]; |
| 155 extern const char kChromeUIThumbnailPath[]; | 156 extern const char kChromeUIThumbnailPath[]; |
| 156 | 157 |
| 157 #if defined(OS_LINUX) | 158 #if defined(OS_LINUX) |
| 158 extern const char kChromeUILinuxProxyConfigHost[]; | 159 extern const char kChromeUILinuxProxyConfigHost[]; |
| 159 extern const char kChromeUISandboxHost[]; | 160 extern const char kChromeUISandboxHost[]; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 void RegisterChromeSchemes(); | 260 void RegisterChromeSchemes(); |
| 260 | 261 |
| 261 #if defined(OS_CHROMEOS) | 262 #if defined(OS_CHROMEOS) |
| 262 // "Learn more" URL for the Cloud Print section under Options. | 263 // "Learn more" URL for the Cloud Print section under Options. |
| 263 extern const char kCloudPrintLearnMoreURL[]; | 264 extern const char kCloudPrintLearnMoreURL[]; |
| 264 #endif | 265 #endif |
| 265 | 266 |
| 266 } // namespace chrome | 267 } // namespace chrome |
| 267 | 268 |
| 268 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 269 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |