Chromium Code Reviews| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 680 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 680 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 681 kChromeUILinuxProxyConfigHost, | 681 kChromeUILinuxProxyConfigHost, |
| 682 kChromeUISandboxHost, | 682 kChromeUISandboxHost, |
| 683 #endif | 683 #endif |
| 684 #if defined(OS_WIN) | 684 #if defined(OS_WIN) |
| 685 kChromeUIConflictsHost, | 685 kChromeUIConflictsHost, |
| 686 #endif | 686 #endif |
| 687 #if !defined(DISABLE_NACL) | 687 #if !defined(DISABLE_NACL) |
| 688 kChromeUINaClHost, | 688 kChromeUINaClHost, |
| 689 #endif | 689 #endif |
| 690 #if defined(ENABLE_CONFIGURATION_POLICY) | |
| 691 kChromeUIPolicyHost, | 690 kChromeUIPolicyHost, |
|
Andrew T Wilson (Slow)
2016/03/15 00:21:40
Should this be moved up above in alphabetical orde
| |
| 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 |