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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 extern const char kChromeUISyncPromoURL[]; | 63 extern const char kChromeUISyncPromoURL[]; |
64 extern const char kChromeUITaskManagerURL[]; | 64 extern const char kChromeUITaskManagerURL[]; |
65 extern const char kChromeUITermsURL[]; | 65 extern const char kChromeUITermsURL[]; |
66 extern const char kChromeUIThumbnailURL[]; | 66 extern const char kChromeUIThumbnailURL[]; |
67 extern const char kChromeUIUberURL[]; | 67 extern const char kChromeUIUberURL[]; |
68 extern const char kChromeUIUberFrameURL[]; | 68 extern const char kChromeUIUberFrameURL[]; |
69 extern const char kChromeUIVersionURL[]; | 69 extern const char kChromeUIVersionURL[]; |
70 | 70 |
71 #if defined(OS_CHROMEOS) | 71 #if defined(OS_CHROMEOS) |
72 extern const char kChromeUIActivationMessage[]; | 72 extern const char kChromeUIActivationMessage[]; |
73 extern const char kChromeUIActiveDownloadsURL[]; | |
74 extern const char kChromeUIChooseMobileNetworkURL[]; | 73 extern const char kChromeUIChooseMobileNetworkURL[]; |
75 extern const char kChromeUIDiscardsURL[]; | 74 extern const char kChromeUIDiscardsURL[]; |
76 extern const char kChromeUIIdleLogoutDialogURL[]; | 75 extern const char kChromeUIIdleLogoutDialogURL[]; |
77 extern const char kChromeUIImageBurnerURL[]; | 76 extern const char kChromeUIImageBurnerURL[]; |
78 extern const char kChromeUIKeyboardOverlayURL[]; | 77 extern const char kChromeUIKeyboardOverlayURL[]; |
79 extern const char kChromeUILockScreenURL[]; | 78 extern const char kChromeUILockScreenURL[]; |
80 extern const char kChromeUIMediaplayerURL[]; | 79 extern const char kChromeUIMediaplayerURL[]; |
81 extern const char kChromeUIMobileSetupURL[]; | 80 extern const char kChromeUIMobileSetupURL[]; |
82 extern const char kChromeUIOobeURL[]; | 81 extern const char kChromeUIOobeURL[]; |
83 extern const char kChromeUIOSCreditsURL[]; | 82 extern const char kChromeUIOSCreditsURL[]; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 extern const char kChromeUIScreenshotPath[]; | 183 extern const char kChromeUIScreenshotPath[]; |
185 extern const char kChromeUIThemePath[]; | 184 extern const char kChromeUIThemePath[]; |
186 | 185 |
187 #if defined(OS_LINUX) || defined(OS_OPENBSD) | 186 #if defined(OS_LINUX) || defined(OS_OPENBSD) |
188 extern const char kChromeUILinuxProxyConfigHost[]; | 187 extern const char kChromeUILinuxProxyConfigHost[]; |
189 extern const char kChromeUISandboxHost[]; | 188 extern const char kChromeUISandboxHost[]; |
190 #endif | 189 #endif |
191 | 190 |
192 #if defined(OS_CHROMEOS) | 191 #if defined(OS_CHROMEOS) |
193 extern const char kChromeUIActivationMessageHost[]; | 192 extern const char kChromeUIActivationMessageHost[]; |
194 extern const char kChromeUIActiveDownloadsHost[]; | |
195 extern const char kChromeUIChooseMobileNetworkHost[]; | 193 extern const char kChromeUIChooseMobileNetworkHost[]; |
196 extern const char kChromeUICryptohomeHost[]; | 194 extern const char kChromeUICryptohomeHost[]; |
197 extern const char kChromeUIDiscardsHost[]; | 195 extern const char kChromeUIDiscardsHost[]; |
198 extern const char kChromeUIIdleLogoutDialogHost[]; | 196 extern const char kChromeUIIdleLogoutDialogHost[]; |
199 extern const char kChromeUIImageBurnerHost[]; | 197 extern const char kChromeUIImageBurnerHost[]; |
200 extern const char kChromeUIKeyboardOverlayHost[]; | 198 extern const char kChromeUIKeyboardOverlayHost[]; |
201 extern const char kChromeUILockScreenHost[]; | 199 extern const char kChromeUILockScreenHost[]; |
202 extern const char kChromeUILoginContainerHost[]; | 200 extern const char kChromeUILoginContainerHost[]; |
203 extern const char kChromeUILoginHost[]; | 201 extern const char kChromeUILoginHost[]; |
204 extern const char kChromeUIMediaplayerHost[]; | 202 extern const char kChromeUIMediaplayerHost[]; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 #endif // defined(OS_CHROMEOS) | 346 #endif // defined(OS_CHROMEOS) |
349 | 347 |
350 #if defined(OS_CHROMEOS) | 348 #if defined(OS_CHROMEOS) |
351 // "Learn more" URL for the Cloud Print section under Options. | 349 // "Learn more" URL for the Cloud Print section under Options. |
352 extern const char kCloudPrintLearnMoreURL[]; | 350 extern const char kCloudPrintLearnMoreURL[]; |
353 #endif | 351 #endif |
354 | 352 |
355 } // namespace chrome | 353 } // namespace chrome |
356 | 354 |
357 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 355 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |