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

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

Issue 2542493004: Show modified total price for payment instruments. (Closed)
Patch Set: Let anyone review chrome_feature_list.h Created 4 years 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/app/generated_resources.grd ('k') | chrome/browser/android/OWNERS » ('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 2071 matching lines...) Expand 10 before | Expand all | Expand 10 after
2082 #if defined(OS_ANDROID) 2082 #if defined(OS_ANDROID)
2083 {"enable-consistent-omnibox-geolocation", 2083 {"enable-consistent-omnibox-geolocation",
2084 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_NAME, 2084 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_NAME,
2085 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_DESCRIPTION, kOsAndroid, 2085 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_DESCRIPTION, kOsAndroid,
2086 FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)}, 2086 FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)},
2087 {"concurrent-background-loading-on-svelte", 2087 {"concurrent-background-loading-on-svelte",
2088 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_NAME, 2088 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_NAME,
2089 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_DESCRIPTION, kOsAndroid, 2089 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_DESCRIPTION, kOsAndroid,
2090 FEATURE_VALUE_TYPE( 2090 FEATURE_VALUE_TYPE(
2091 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)}, 2091 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)},
2092 {"web-payments-modifiers",
2093 IDS_FLAGS_WEB_PAYMENTS_MODIFIERS_NAME,
2094 IDS_FLAGS_WEB_PAYMENTS_MODIFIERS_DESCRIPTION, kOsAndroid,
2095 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)},
2092 #endif 2096 #endif
2093 {"cross-process-guests", IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_NAME, 2097 {"cross-process-guests", IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_NAME,
2094 IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_DESCRIPTION, kOsDesktop, 2098 IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_DESCRIPTION, kOsDesktop,
2095 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)}, 2099 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)},
2096 #if !defined(OS_ANDROID) && !defined(OS_IOS) 2100 #if !defined(OS_ANDROID) && !defined(OS_IOS)
2097 {"media-remoting", IDS_FLAGS_MEDIA_REMOTING_NAME, 2101 {"media-remoting", IDS_FLAGS_MEDIA_REMOTING_NAME,
2098 IDS_FLAGS_MEDIA_REMOTING_DESCRIPTION, kOsDesktop, 2102 IDS_FLAGS_MEDIA_REMOTING_DESCRIPTION, kOsDesktop,
2099 FEATURE_VALUE_TYPE(features::kMediaRemoting)}, 2103 FEATURE_VALUE_TYPE(features::kMediaRemoting)},
2100 {"media-remoting-encrypted", IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_NAME, 2104 {"media-remoting-encrypted", IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_NAME,
2101 IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_DESCRIPTION, kOsDesktop, 2105 IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_DESCRIPTION, kOsDesktop,
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2307 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2304 2308
2305 const FeatureEntry* GetFeatureEntries(size_t* count) { 2309 const FeatureEntry* GetFeatureEntries(size_t* count) {
2306 *count = arraysize(kFeatureEntries); 2310 *count = arraysize(kFeatureEntries);
2307 return kFeatureEntries; 2311 return kFeatureEntries;
2308 } 2312 }
2309 2313
2310 } // namespace testing 2314 } // namespace testing
2311 2315
2312 } // namespace about_flags 2316 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/android/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698