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/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 Loading... |
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 Loading... |
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 |
OLD | NEW |