| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 kChromeUIGCMInternalsHost, | 609 kChromeUIGCMInternalsHost, |
| 610 kChromeUIHistoryHost, | 610 kChromeUIHistoryHost, |
| 611 kChromeUIInvalidationsHost, | 611 kChromeUIInvalidationsHost, |
| 612 kChromeUILocalStateHost, | 612 kChromeUILocalStateHost, |
| 613 kChromeUIMemoryHost, | 613 kChromeUIMemoryHost, |
| 614 kChromeUIMemoryInternalsHost, | 614 kChromeUIMemoryInternalsHost, |
| 615 kChromeUINetInternalsHost, | 615 kChromeUINetInternalsHost, |
| 616 kChromeUINewTabHost, | 616 kChromeUINewTabHost, |
| 617 kChromeUIOmniboxHost, | 617 kChromeUIOmniboxHost, |
| 618 kChromeUIPasswordManagerInternalsHost, | 618 kChromeUIPasswordManagerInternalsHost, |
| 619 kChromeUIPolicyHost, |
| 619 kChromeUIPredictorsHost, | 620 kChromeUIPredictorsHost, |
| 620 kChromeUIProfilerHost, | 621 kChromeUIProfilerHost, |
| 621 kChromeUISignInInternalsHost, | 622 kChromeUISignInInternalsHost, |
| 622 kChromeUISuggestionsHost, | 623 kChromeUISuggestionsHost, |
| 623 kChromeUISyncInternalsHost, | 624 kChromeUISyncInternalsHost, |
| 624 kChromeUITermsHost, | 625 kChromeUITermsHost, |
| 625 kChromeUIThumbnailListHost, | 626 kChromeUIThumbnailListHost, |
| 626 kChromeUITranslateInternalsHost, | 627 kChromeUITranslateInternalsHost, |
| 627 kChromeUIUserActionsHost, | 628 kChromeUIUserActionsHost, |
| 628 kChromeUIVersionHost, | 629 kChromeUIVersionHost, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 681 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 681 kChromeUILinuxProxyConfigHost, | 682 kChromeUILinuxProxyConfigHost, |
| 682 kChromeUISandboxHost, | 683 kChromeUISandboxHost, |
| 683 #endif | 684 #endif |
| 684 #if defined(OS_WIN) | 685 #if defined(OS_WIN) |
| 685 kChromeUIConflictsHost, | 686 kChromeUIConflictsHost, |
| 686 #endif | 687 #endif |
| 687 #if !defined(DISABLE_NACL) | 688 #if !defined(DISABLE_NACL) |
| 688 kChromeUINaClHost, | 689 kChromeUINaClHost, |
| 689 #endif | 690 #endif |
| 690 #if defined(ENABLE_CONFIGURATION_POLICY) | |
| 691 kChromeUIPolicyHost, | |
| 692 #endif | |
| 693 #if defined(ENABLE_EXTENSIONS) | 691 #if defined(ENABLE_EXTENSIONS) |
| 694 kChromeUIExtensionsHost, | 692 kChromeUIExtensionsHost, |
| 695 #endif | 693 #endif |
| 696 #if defined(ENABLE_PRINT_PREVIEW) | 694 #if defined(ENABLE_PRINT_PREVIEW) |
| 697 kChromeUIPrintHost, | 695 kChromeUIPrintHost, |
| 698 #endif | 696 #endif |
| 699 #if defined(ENABLE_SERVICE_DISCOVERY) | 697 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 700 kChromeUIDevicesHost, | 698 kChromeUIDevicesHost, |
| 701 #endif | 699 #endif |
| 702 #if defined(ENABLE_WEBRTC) | 700 #if defined(ENABLE_WEBRTC) |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; | 766 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; |
| 769 #endif | 767 #endif |
| 770 | 768 |
| 771 const char kChooserBluetoothOverviewURL[] = | 769 const char kChooserBluetoothOverviewURL[] = |
| 772 "https://support.google.com/chrome?p=bluetooth"; | 770 "https://support.google.com/chrome?p=bluetooth"; |
| 773 | 771 |
| 774 const char kChooserUsbOverviewURL[] = | 772 const char kChooserUsbOverviewURL[] = |
| 775 "https://support.google.com/chrome?p=webusb"; | 773 "https://support.google.com/chrome?p=webusb"; |
| 776 | 774 |
| 777 } // namespace chrome | 775 } // namespace chrome |
| OLD | NEW |