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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 #endif | 700 #endif |
701 #if !defined(DISABLE_NACL) | 701 #if !defined(DISABLE_NACL) |
702 kChromeUINaClHost, | 702 kChromeUINaClHost, |
703 #endif | 703 #endif |
704 #if defined(ENABLE_EXTENSIONS) | 704 #if defined(ENABLE_EXTENSIONS) |
705 kChromeUIExtensionsHost, | 705 kChromeUIExtensionsHost, |
706 #endif | 706 #endif |
707 #if defined(ENABLE_PRINT_PREVIEW) | 707 #if defined(ENABLE_PRINT_PREVIEW) |
708 kChromeUIPrintHost, | 708 kChromeUIPrintHost, |
709 #endif | 709 #endif |
710 #if defined(ENABLE_SERVICE_DISCOVERY) | 710 #if BUILDFLAG(ENABLE_SERVICE_DISCOVERY) |
711 kChromeUIDevicesHost, | 711 kChromeUIDevicesHost, |
712 #endif | 712 #endif |
713 #if defined(ENABLE_WEBRTC) | 713 #if defined(ENABLE_WEBRTC) |
714 kChromeUIWebRtcLogsHost, | 714 kChromeUIWebRtcLogsHost, |
715 #endif | 715 #endif |
716 }; | 716 }; |
717 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); | 717 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); |
718 | 718 |
719 const char* const kChromeDebugURLs[] = { | 719 const char* const kChromeDebugURLs[] = { |
720 content::kChromeUIBadCastCrashURL, | 720 content::kChromeUIBadCastCrashURL, |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 #endif | 791 #endif |
792 | 792 |
793 const char kChooserUsbOverviewURL[] = | 793 const char kChooserUsbOverviewURL[] = |
794 "https://support.google.com/chrome?p=webusb"; | 794 "https://support.google.com/chrome?p=webusb"; |
795 | 795 |
796 #if defined(OS_CHROMEOS) | 796 #if defined(OS_CHROMEOS) |
797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
798 #endif | 798 #endif |
799 | 799 |
800 } // namespace chrome | 800 } // namespace chrome |
OLD | NEW |