Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: chrome/common/url_constants.cc

Issue 2407483002: Make enable_service_discovery a chrome/ feature. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/features.gni ('k') | tools/gn/docs/cookbook.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/features.gni ('k') | tools/gn/docs/cookbook.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698