OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 extern const char kChromeUIMobileSetupURL[]; | 80 extern const char kChromeUIMobileSetupURL[]; |
81 extern const char kChromeUIOobeURL[]; | 81 extern const char kChromeUIOobeURL[]; |
82 extern const char kChromeUIOSCreditsURL[]; | 82 extern const char kChromeUIOSCreditsURL[]; |
83 extern const char kChromeUIProxySettingsURL[]; | 83 extern const char kChromeUIProxySettingsURL[]; |
84 extern const char kChromeUIRegisterPageURL[]; | 84 extern const char kChromeUIRegisterPageURL[]; |
85 extern const char kChromeUISimUnlockURL[]; | 85 extern const char kChromeUISimUnlockURL[]; |
86 extern const char kChromeUISlideshowURL[]; | 86 extern const char kChromeUISlideshowURL[]; |
87 extern const char kChromeUISystemInfoURL[]; | 87 extern const char kChromeUISystemInfoURL[]; |
88 extern const char kChromeUITermsOemURL[]; | 88 extern const char kChromeUITermsOemURL[]; |
89 extern const char kChromeUIUserImageURL[]; | 89 extern const char kChromeUIUserImageURL[]; |
| 90 extern const char kChromeUIWallpaperThumbnailURL[]; |
90 #endif | 91 #endif |
91 | 92 |
92 #if defined(USE_ASH) | 93 #if defined(USE_ASH) |
93 extern const char kChromeUITransparencyURL[]; | 94 extern const char kChromeUITransparencyURL[]; |
94 #endif | 95 #endif |
95 | 96 |
96 #if defined(FILE_MANAGER_EXTENSION) | 97 #if defined(FILE_MANAGER_EXTENSION) |
97 extern const char kChromeUIFileManagerURL[]; | 98 extern const char kChromeUIFileManagerURL[]; |
98 #endif | 99 #endif |
99 | 100 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 extern const char kChromeUINetworkHost[]; | 205 extern const char kChromeUINetworkHost[]; |
205 extern const char kChromeUIOobeHost[]; | 206 extern const char kChromeUIOobeHost[]; |
206 extern const char kChromeUIOSCreditsHost[]; | 207 extern const char kChromeUIOSCreditsHost[]; |
207 extern const char kChromeUIProxySettingsHost[]; | 208 extern const char kChromeUIProxySettingsHost[]; |
208 extern const char kChromeUIRegisterPageHost[]; | 209 extern const char kChromeUIRegisterPageHost[]; |
209 extern const char kChromeUIRotateHost[]; | 210 extern const char kChromeUIRotateHost[]; |
210 extern const char kChromeUISimUnlockHost[]; | 211 extern const char kChromeUISimUnlockHost[]; |
211 extern const char kChromeUISlideshowHost[]; | 212 extern const char kChromeUISlideshowHost[]; |
212 extern const char kChromeUISystemInfoHost[]; | 213 extern const char kChromeUISystemInfoHost[]; |
213 extern const char kChromeUIUserImageHost[]; | 214 extern const char kChromeUIUserImageHost[]; |
| 215 extern const char kChromeUIWallpaperThumbnailHost[]; |
214 | 216 |
215 extern const char kChromeUIMenu[]; | 217 extern const char kChromeUIMenu[]; |
216 extern const char kChromeUINetworkMenu[]; | 218 extern const char kChromeUINetworkMenu[]; |
217 extern const char kChromeUIWrenchMenu[]; | 219 extern const char kChromeUIWrenchMenu[]; |
218 | 220 |
219 extern const char kEULAPathFormat[]; | 221 extern const char kEULAPathFormat[]; |
220 extern const char kOemEulaURLPath[]; | 222 extern const char kOemEulaURLPath[]; |
221 #endif | 223 #endif |
222 | 224 |
223 #if defined(USE_ASH) | 225 #if defined(USE_ASH) |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 #endif // defined(OS_CHROMEOS) | 348 #endif // defined(OS_CHROMEOS) |
347 | 349 |
348 #if defined(OS_CHROMEOS) | 350 #if defined(OS_CHROMEOS) |
349 // "Learn more" URL for the Cloud Print section under Options. | 351 // "Learn more" URL for the Cloud Print section under Options. |
350 extern const char kCloudPrintLearnMoreURL[]; | 352 extern const char kCloudPrintLearnMoreURL[]; |
351 #endif | 353 #endif |
352 | 354 |
353 } // namespace chrome | 355 } // namespace chrome |
354 | 356 |
355 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 357 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |