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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 2888933002: Adding flag descriptions for XGEO visible networks feature (Closed)
Patch Set: Adding flag descriptions for XGEO visible networks feature Created 3 years, 7 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 | « no previous file | chrome/browser/flag_descriptions.h » ('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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2586 matching lines...) Expand 10 before | Expand all | Expand 10 after
2597 kOsAndroid, FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)}, 2597 kOsAndroid, FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)},
2598 {"concurrent-background-loading-on-svelte", 2598 {"concurrent-background-loading-on-svelte",
2599 flag_descriptions::kOfflinePagesSvelteConcurrentLoadingName, 2599 flag_descriptions::kOfflinePagesSvelteConcurrentLoadingName,
2600 flag_descriptions::kOfflinePagesSvelteConcurrentLoadingDescription, 2600 flag_descriptions::kOfflinePagesSvelteConcurrentLoadingDescription,
2601 kOsAndroid, 2601 kOsAndroid,
2602 FEATURE_VALUE_TYPE( 2602 FEATURE_VALUE_TYPE(
2603 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)}, 2603 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)},
2604 {"web-payments-modifiers", flag_descriptions::kWebPaymentsModifiersName, 2604 {"web-payments-modifiers", flag_descriptions::kWebPaymentsModifiersName,
2605 flag_descriptions::kWebPaymentsModifiersDescription, kOsAndroid, 2605 flag_descriptions::kWebPaymentsModifiersDescription, kOsAndroid,
2606 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)}, 2606 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)},
2607 {"xgeo-visible-networks", flag_descriptions::kXGEOVisibleNetworksName,
2608 flag_descriptions::kXGEOVisibleNetworksDescription, kOsAndroid,
2609 FEATURE_VALUE_TYPE(chrome::android::kXGEOVisibleNetworks)},
2607 #endif // !defined(OS_ANDROID) 2610 #endif // !defined(OS_ANDROID)
2608 {"cross-process-guests", 2611 {"cross-process-guests",
2609 flag_descriptions::kCrossProcessGuestViewIsolationName, 2612 flag_descriptions::kCrossProcessGuestViewIsolationName,
2610 flag_descriptions::kCrossProcessGuestViewIsolationDescription, kOsDesktop, 2613 flag_descriptions::kCrossProcessGuestViewIsolationDescription, kOsDesktop,
2611 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)}, 2614 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)},
2612 #if !defined(OS_ANDROID) && !defined(OS_IOS) 2615 #if !defined(OS_ANDROID) && !defined(OS_IOS)
2613 {"media-remoting", flag_descriptions::kMediaRemotingName, 2616 {"media-remoting", flag_descriptions::kMediaRemotingName,
2614 flag_descriptions::kMediaRemotingDescription, kOsDesktop, 2617 flag_descriptions::kMediaRemotingDescription, kOsDesktop,
2615 FEATURE_VALUE_TYPE(features::kMediaRemoting)}, 2618 FEATURE_VALUE_TYPE(features::kMediaRemoting)},
2616 #endif 2619 #endif
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
3176 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 3179 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
3177 3180
3178 const FeatureEntry* GetFeatureEntries(size_t* count) { 3181 const FeatureEntry* GetFeatureEntries(size_t* count) {
3179 *count = arraysize(kFeatureEntries); 3182 *count = arraysize(kFeatureEntries);
3180 return kFeatureEntries; 3183 return kFeatureEntries;
3181 } 3184 }
3182 3185
3183 } // namespace testing 3186 } // namespace testing
3184 3187
3185 } // namespace about_flags 3188 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698