| 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" |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 kChromeUITaskSchedulerInternalsHost, | 648 kChromeUITaskSchedulerInternalsHost, |
| 649 kChromeUITermsHost, | 649 kChromeUITermsHost, |
| 650 kChromeUIThumbnailListHost, | 650 kChromeUIThumbnailListHost, |
| 651 kChromeUITranslateInternalsHost, | 651 kChromeUITranslateInternalsHost, |
| 652 kChromeUIUsbInternalsHost, | 652 kChromeUIUsbInternalsHost, |
| 653 kChromeUIUserActionsHost, | 653 kChromeUIUserActionsHost, |
| 654 kChromeUIVersionHost, | 654 kChromeUIVersionHost, |
| 655 content::kChromeUIAccessibilityHost, | 655 content::kChromeUIAccessibilityHost, |
| 656 content::kChromeUIAppCacheInternalsHost, | 656 content::kChromeUIAppCacheInternalsHost, |
| 657 content::kChromeUIBlobInternalsHost, | 657 content::kChromeUIBlobInternalsHost, |
| 658 content::kChromeUIDinoHost, |
| 658 content::kChromeUIGpuHost, | 659 content::kChromeUIGpuHost, |
| 659 content::kChromeUIHistogramHost, | 660 content::kChromeUIHistogramHost, |
| 660 content::kChromeUIIndexedDBInternalsHost, | 661 content::kChromeUIIndexedDBInternalsHost, |
| 661 content::kChromeUIMediaInternalsHost, | 662 content::kChromeUIMediaInternalsHost, |
| 662 content::kChromeUINetworkErrorHost, | 663 content::kChromeUINetworkErrorHost, |
| 663 content::kChromeUINetworkErrorsListingHost, | 664 content::kChromeUINetworkErrorsListingHost, |
| 664 content::kChromeUINetworkViewCacheHost, | 665 content::kChromeUINetworkViewCacheHost, |
| 665 content::kChromeUIServiceWorkerInternalsHost, | 666 content::kChromeUIServiceWorkerInternalsHost, |
| 666 content::kChromeUITracingHost, | 667 content::kChromeUITracingHost, |
| 667 content::kChromeUIWebRTCInternalsHost, | 668 content::kChromeUIWebRTCInternalsHost, |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 #endif | 803 #endif |
| 803 | 804 |
| 804 const char kChooserUsbOverviewURL[] = | 805 const char kChooserUsbOverviewURL[] = |
| 805 "https://support.google.com/chrome?p=webusb"; | 806 "https://support.google.com/chrome?p=webusb"; |
| 806 | 807 |
| 807 #if defined(OS_CHROMEOS) | 808 #if defined(OS_CHROMEOS) |
| 808 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 809 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 809 #endif | 810 #endif |
| 810 | 811 |
| 811 } // namespace chrome | 812 } // namespace chrome |
| OLD | NEW |