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

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

Issue 2542493004: Show modified total price for payment instruments. (Closed)
Patch Set: 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
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 2077 matching lines...) Expand 10 before | Expand all | Expand 10 after
2088 #if defined(OS_ANDROID) 2088 #if defined(OS_ANDROID)
2089 {"enable-consistent-omnibox-geolocation", 2089 {"enable-consistent-omnibox-geolocation",
2090 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_NAME, 2090 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_NAME,
2091 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_DESCRIPTION, kOsAndroid, 2091 IDS_FLAGS_ENABLE_CONSISTENT_OMNIBOX_GEOLOCATION_DESCRIPTION, kOsAndroid,
2092 FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)}, 2092 FEATURE_VALUE_TYPE(features::kConsistentOmniboxGeolocation)},
2093 {"concurrent-background-loading-on-svelte", 2093 {"concurrent-background-loading-on-svelte",
2094 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_NAME, 2094 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_NAME,
2095 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_DESCRIPTION, kOsAndroid, 2095 IDS_FLAGS_OFFLINE_PAGES_SVELTE_CONCURRENT_LOADING_DESCRIPTION, kOsAndroid,
2096 FEATURE_VALUE_TYPE( 2096 FEATURE_VALUE_TYPE(
2097 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)}, 2097 offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature)},
2098 {"web-payments-modifiers",
2099 IDS_FLAGS_WEB_PAYMENTS_MODIFIERS_NAME,
2100 IDS_FLAGS_WEB_PAYMENTS_MODIFIERS_DESCRIPTION, kOsAndroid,
2101 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)},
2098 #endif 2102 #endif
2099 {"cross-process-guests", IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_NAME, 2103 {"cross-process-guests", IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_NAME,
2100 IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_DESCRIPTION, kOsDesktop, 2104 IDS_FLAGS_CROSS_PROCESS_GUEST_VIEW_ISOLATION_DESCRIPTION, kOsDesktop,
2101 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)}, 2105 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)},
2102 #if !defined(OS_ANDROID) && !defined(OS_IOS) 2106 #if !defined(OS_ANDROID) && !defined(OS_IOS)
2103 {"media-remoting", IDS_FLAGS_MEDIA_REMOTING_NAME, 2107 {"media-remoting", IDS_FLAGS_MEDIA_REMOTING_NAME,
2104 IDS_FLAGS_MEDIA_REMOTING_DESCRIPTION, kOsDesktop, 2108 IDS_FLAGS_MEDIA_REMOTING_DESCRIPTION, kOsDesktop,
2105 FEATURE_VALUE_TYPE(features::kMediaRemoting)}, 2109 FEATURE_VALUE_TYPE(features::kMediaRemoting)},
2106 {"media-remoting-encrypted", IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_NAME, 2110 {"media-remoting-encrypted", IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_NAME,
2107 IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_DESCRIPTION, kOsDesktop, 2111 IDS_FLAGS_MEDIA_REMOTING_ENCRYPTED_DESCRIPTION, kOsDesktop,
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
2309 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2313 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2310 2314
2311 const FeatureEntry* GetFeatureEntries(size_t* count) { 2315 const FeatureEntry* GetFeatureEntries(size_t* count) {
2312 *count = arraysize(kFeatureEntries); 2316 *count = arraysize(kFeatureEntries);
2313 return kFeatureEntries; 2317 return kFeatureEntries;
2314 } 2318 }
2315 2319
2316 } // namespace testing 2320 } // namespace testing
2317 2321
2318 } // namespace about_flags 2322 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698