| 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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "chrome/common/features.h" | 11 #include "chrome/common/features.h" |
| 12 #include "components/safe_browsing/web_ui/constants.h" |
| 12 #include "content/public/common/url_constants.h" | 13 #include "content/public/common/url_constants.h" |
| 13 #include "extensions/features/features.h" | 14 #include "extensions/features/features.h" |
| 14 #include "media/media_features.h" | 15 #include "media/media_features.h" |
| 15 #include "printing/features/features.h" | 16 #include "printing/features/features.h" |
| 16 #include "url/url_util.h" | 17 #include "url/url_util.h" |
| 17 | 18 |
| 18 namespace chrome { | 19 namespace chrome { |
| 19 | 20 |
| 20 #if defined(OS_CHROMEOS) | 21 #if defined(OS_CHROMEOS) |
| 21 const char kCrosScheme[] = "cros"; | 22 const char kCrosScheme[] = "cros"; |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 kChromeUINewTabHost, | 663 kChromeUINewTabHost, |
| 663 kChromeUIOmniboxHost, | 664 kChromeUIOmniboxHost, |
| 664 kChromeUIPasswordManagerInternalsHost, | 665 kChromeUIPasswordManagerInternalsHost, |
| 665 kChromeUIPolicyHost, | 666 kChromeUIPolicyHost, |
| 666 kChromeUIPredictorsHost, | 667 kChromeUIPredictorsHost, |
| 667 kChromeUIProfilerHost, | 668 kChromeUIProfilerHost, |
| 668 kChromeUIQuotaInternalsHost, | 669 kChromeUIQuotaInternalsHost, |
| 669 kChromeUISignInInternalsHost, | 670 kChromeUISignInInternalsHost, |
| 670 kChromeUISiteEngagementHost, | 671 kChromeUISiteEngagementHost, |
| 671 kChromeUINTPTilesInternalsHost, | 672 kChromeUINTPTilesInternalsHost, |
| 673 safe_browsing::kChromeUISafeBrowsingHost, |
| 672 kChromeUISuggestionsHost, | 674 kChromeUISuggestionsHost, |
| 673 kChromeUISupervisedUserInternalsHost, | 675 kChromeUISupervisedUserInternalsHost, |
| 674 kChromeUISyncInternalsHost, | 676 kChromeUISyncInternalsHost, |
| 675 kChromeUITaskSchedulerInternalsHost, | 677 kChromeUITaskSchedulerInternalsHost, |
| 676 kChromeUITermsHost, | 678 kChromeUITermsHost, |
| 677 kChromeUIThumbnailListHost, | 679 kChromeUIThumbnailListHost, |
| 678 kChromeUITranslateInternalsHost, | 680 kChromeUITranslateInternalsHost, |
| 679 kChromeUIUsbInternalsHost, | 681 kChromeUIUsbInternalsHost, |
| 680 kChromeUIUserActionsHost, | 682 kChromeUIUserActionsHost, |
| 681 kChromeUIVersionHost, | 683 kChromeUIVersionHost, |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 #endif | 838 #endif |
| 837 | 839 |
| 838 const char kChooserUsbOverviewURL[] = | 840 const char kChooserUsbOverviewURL[] = |
| 839 "https://support.google.com/chrome?p=webusb"; | 841 "https://support.google.com/chrome?p=webusb"; |
| 840 | 842 |
| 841 #if defined(OS_CHROMEOS) | 843 #if defined(OS_CHROMEOS) |
| 842 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 844 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 843 #endif | 845 #endif |
| 844 | 846 |
| 845 } // namespace chrome | 847 } // namespace chrome |
| OLD | NEW |