| 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 kChromeUISigninDiceInternalsHost[]; |
| 149 extern const char kChromeUIDiscardsHost[]; | 150 extern const char kChromeUIDiscardsHost[]; |
| 150 extern const char kChromeUIDiscardsURL[]; | 151 extern const char kChromeUIDiscardsURL[]; |
| 151 #endif | 152 #endif |
| 152 | 153 |
| 153 // chrome components of URLs. Should be kept in sync with the full URLs above. | 154 // chrome components of URLs. Should be kept in sync with the full URLs above. |
| 154 extern const char kChromeUIAboutHost[]; | 155 extern const char kChromeUIAboutHost[]; |
| 155 extern const char kChromeUIAboutPageFrameHost[]; | 156 extern const char kChromeUIAboutPageFrameHost[]; |
| 156 extern const char kChromeUIBlankHost[]; | 157 extern const char kChromeUIBlankHost[]; |
| 157 extern const char kChromeUIAppLauncherPageHost[]; | 158 extern const char kChromeUIAppLauncherPageHost[]; |
| 158 extern const char kChromeUIAppListStartPageHost[]; | 159 extern const char kChromeUIAppListStartPageHost[]; |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 extern const char kChooserUsbOverviewURL[]; | 626 extern const char kChooserUsbOverviewURL[]; |
| 626 | 627 |
| 627 #if defined(OS_CHROMEOS) | 628 #if defined(OS_CHROMEOS) |
| 628 // The URL for EOL notification | 629 // The URL for EOL notification |
| 629 extern const char kEolNotificationURL[]; | 630 extern const char kEolNotificationURL[]; |
| 630 #endif | 631 #endif |
| 631 | 632 |
| 632 } // namespace chrome | 633 } // namespace chrome |
| 633 | 634 |
| 634 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 635 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |