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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 extern const char kChromeUITouchIconHost[]; | 171 extern const char kChromeUITouchIconHost[]; |
172 extern const char kChromeUITracingHost[]; | 172 extern const char kChromeUITracingHost[]; |
173 extern const char kChromeUITrackingHost[]; | 173 extern const char kChromeUITrackingHost[]; |
174 extern const char kChromeUITrackingHost2[]; | 174 extern const char kChromeUITrackingHost2[]; |
175 extern const char kChromeUIVersionHost[]; | 175 extern const char kChromeUIVersionHost[]; |
176 extern const char kChromeUIWorkersHost[]; | 176 extern const char kChromeUIWorkersHost[]; |
177 | 177 |
178 extern const char kChromeUIScreenshotPath[]; | 178 extern const char kChromeUIScreenshotPath[]; |
179 extern const char kChromeUIThemePath[]; | 179 extern const char kChromeUIThemePath[]; |
180 | 180 |
181 #if defined(OS_LINUX) | 181 #if defined(OS_LINUX) || defined(OS_OPENBSD) |
182 extern const char kChromeUILinuxProxyConfigHost[]; | 182 extern const char kChromeUILinuxProxyConfigHost[]; |
183 extern const char kChromeUISandboxHost[]; | 183 extern const char kChromeUISandboxHost[]; |
184 #endif | 184 #endif |
185 | 185 |
186 #if defined(OS_CHROMEOS) | 186 #if defined(OS_CHROMEOS) |
187 extern const char kChromeUIActivationMessageHost[]; | 187 extern const char kChromeUIActivationMessageHost[]; |
188 extern const char kChromeUIActiveDownloadsHost[]; | 188 extern const char kChromeUIActiveDownloadsHost[]; |
189 extern const char kChromeUIChooseMobileNetworkHost[]; | 189 extern const char kChromeUIChooseMobileNetworkHost[]; |
190 extern const char kChromeUICryptohomeHost[]; | 190 extern const char kChromeUICryptohomeHost[]; |
191 extern const char kChromeUIDiscardsHost[]; | 191 extern const char kChromeUIDiscardsHost[]; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 void RegisterChromeSchemes(); | 302 void RegisterChromeSchemes(); |
303 | 303 |
304 #if defined(OS_CHROMEOS) | 304 #if defined(OS_CHROMEOS) |
305 // "Learn more" URL for the Cloud Print section under Options. | 305 // "Learn more" URL for the Cloud Print section under Options. |
306 extern const char kCloudPrintLearnMoreURL[]; | 306 extern const char kCloudPrintLearnMoreURL[]; |
307 #endif | 307 #endif |
308 | 308 |
309 } // namespace chrome | 309 } // namespace chrome |
310 | 310 |
311 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 311 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |