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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 #if BUILDFLAG(ENABLE_WEBRTC) | 139 #if BUILDFLAG(ENABLE_WEBRTC) |
140 extern const char kChromeUIWebRtcLogsURL[]; | 140 extern const char kChromeUIWebRtcLogsURL[]; |
141 #endif | 141 #endif |
142 | 142 |
143 extern const char kChromeUIMediaRouterURL[]; | 143 extern const char kChromeUIMediaRouterURL[]; |
144 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 144 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
145 extern const char kChromeUICastURL[]; | 145 extern const char kChromeUICastURL[]; |
146 #endif | 146 #endif |
147 | 147 |
148 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) | 148 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) |
149 extern const char kChromeUIDiscardsHost[]; | |
150 extern const char kChromeUIDiscardsURL[]; | 149 extern const char kChromeUIDiscardsURL[]; |
151 #endif | 150 #endif |
152 | 151 |
153 // chrome components of URLs. Should be kept in sync with the full URLs above. | 152 // chrome components of URLs. Should be kept in sync with the full URLs above. |
154 extern const char kChromeUIAboutHost[]; | 153 extern const char kChromeUIAboutHost[]; |
155 extern const char kChromeUIAboutPageFrameHost[]; | 154 extern const char kChromeUIAboutPageFrameHost[]; |
156 extern const char kChromeUIBlankHost[]; | 155 extern const char kChromeUIBlankHost[]; |
157 extern const char kChromeUIAppLauncherPageHost[]; | 156 extern const char kChromeUIAppLauncherPageHost[]; |
158 extern const char kChromeUIAppListStartPageHost[]; | 157 extern const char kChromeUIAppListStartPageHost[]; |
159 extern const char kChromeUIBluetoothInternalsHost[]; | 158 extern const char kChromeUIBluetoothInternalsHost[]; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 extern const char kChromeUIUserActionsHost[]; | 250 extern const char kChromeUIUserActionsHost[]; |
252 extern const char kChromeUIVersionHost[]; | 251 extern const char kChromeUIVersionHost[]; |
253 extern const char kChromeUIWelcomeHost[]; | 252 extern const char kChromeUIWelcomeHost[]; |
254 extern const char kChromeUIWelcomeWin10Host[]; | 253 extern const char kChromeUIWelcomeWin10Host[]; |
255 extern const char kChromeUIWorkersHost[]; | 254 extern const char kChromeUIWorkersHost[]; |
256 | 255 |
257 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) | 256 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) |
258 extern const char kChromeUIPrintHost[]; | 257 extern const char kChromeUIPrintHost[]; |
259 #endif // ENABLE_PRINT_PREVIEW | 258 #endif // ENABLE_PRINT_PREVIEW |
260 | 259 |
| 260 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) |
| 261 extern const char kChromeUISigninDiceInternalsHost[]; |
| 262 extern const char kChromeUIDiscardsHost[]; |
| 263 #endif |
| 264 |
261 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 265 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
262 extern const char kChromeUILinuxProxyConfigHost[]; | 266 extern const char kChromeUILinuxProxyConfigHost[]; |
263 #endif | 267 #endif |
264 | 268 |
265 #if defined(OS_LINUX) || defined(OS_ANDROID) | 269 #if defined(OS_LINUX) || defined(OS_ANDROID) |
266 extern const char kChromeUISandboxHost[]; | 270 extern const char kChromeUISandboxHost[]; |
267 #endif | 271 #endif |
268 | 272 |
269 #if defined(OS_ANDROID) | 273 #if defined(OS_ANDROID) |
270 extern const char kChromeUIContextualSearchPromoHost[]; | 274 extern const char kChromeUIContextualSearchPromoHost[]; |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 extern const char kChooserUsbOverviewURL[]; | 629 extern const char kChooserUsbOverviewURL[]; |
626 | 630 |
627 #if defined(OS_CHROMEOS) | 631 #if defined(OS_CHROMEOS) |
628 // The URL for EOL notification | 632 // The URL for EOL notification |
629 extern const char kEolNotificationURL[]; | 633 extern const char kEolNotificationURL[]; |
630 #endif | 634 #endif |
631 | 635 |
632 } // namespace chrome | 636 } // namespace chrome |
633 | 637 |
634 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 638 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |