| 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> |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "chrome/common/features.h" | 16 #include "chrome/common/features.h" |
| 17 #include "content/public/common/url_constants.h" | 17 #include "content/public/common/url_constants.h" |
| 18 #include "device/vr/features.h" |
| 18 #include "media/media_features.h" | 19 #include "media/media_features.h" |
| 19 #include "ppapi/features/features.h" | 20 #include "ppapi/features/features.h" |
| 20 #include "printing/features/features.h" | 21 #include "printing/features/features.h" |
| 21 | 22 |
| 22 namespace chrome { | 23 namespace chrome { |
| 23 | 24 |
| 24 // chrome: URLs (including schemes). Should be kept in sync with the | 25 // chrome: URLs (including schemes). Should be kept in sync with the |
| 25 // components below. | 26 // components below. |
| 26 extern const char kChromeUIAboutURL[]; | 27 extern const char kChromeUIAboutURL[]; |
| 27 extern const char kChromeUIAppsURL[]; | 28 extern const char kChromeUIAppsURL[]; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 264 |
| 264 #if defined(OS_ANDROID) | 265 #if defined(OS_ANDROID) |
| 265 extern const char kChromeUIContextualSearchPromoHost[]; | 266 extern const char kChromeUIContextualSearchPromoHost[]; |
| 266 extern const char kChromeUIOfflineInternalsURL[]; | 267 extern const char kChromeUIOfflineInternalsURL[]; |
| 267 extern const char kChromeUIPhysicalWebDiagnosticsHost[]; | 268 extern const char kChromeUIPhysicalWebDiagnosticsHost[]; |
| 268 extern const char kChromeUIPopularSitesInternalsHost[]; | 269 extern const char kChromeUIPopularSitesInternalsHost[]; |
| 269 extern const char kChromeUISnippetsInternalsHost[]; | 270 extern const char kChromeUISnippetsInternalsHost[]; |
| 270 extern const char kChromeUIWebApksHost[]; | 271 extern const char kChromeUIWebApksHost[]; |
| 271 #endif | 272 #endif |
| 272 | 273 |
| 273 #if defined(ENABLE_WEBVR) | 274 #if BUILDFLAG(ENABLE_WEBVR) |
| 274 extern const char kChromeUIVrShellUIHost[]; | 275 extern const char kChromeUIVrShellUIHost[]; |
| 275 #endif | 276 #endif |
| 276 | 277 |
| 277 #if defined(OS_CHROMEOS) | 278 #if defined(OS_CHROMEOS) |
| 278 extern const char kChromeUIActivationMessageHost[]; | 279 extern const char kChromeUIActivationMessageHost[]; |
| 279 extern const char kChromeUIAppLaunchHost[]; | 280 extern const char kChromeUIAppLaunchHost[]; |
| 280 extern const char kChromeUIBluetoothPairingHost[]; | 281 extern const char kChromeUIBluetoothPairingHost[]; |
| 281 extern const char kChromeUICertificateManagerHost[]; | 282 extern const char kChromeUICertificateManagerHost[]; |
| 282 extern const char kChromeUIChooseMobileNetworkHost[]; | 283 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 283 extern const char kChromeUICryptohomeHost[]; | 284 extern const char kChromeUICryptohomeHost[]; |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 extern const char kChooserUsbOverviewURL[]; | 619 extern const char kChooserUsbOverviewURL[]; |
| 619 | 620 |
| 620 #if defined(OS_CHROMEOS) | 621 #if defined(OS_CHROMEOS) |
| 621 // The URL for EOL notification | 622 // The URL for EOL notification |
| 622 extern const char kEolNotificationURL[]; | 623 extern const char kEolNotificationURL[]; |
| 623 #endif | 624 #endif |
| 624 | 625 |
| 625 } // namespace chrome | 626 } // namespace chrome |
| 626 | 627 |
| 627 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 628 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |