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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2614883003: Cache web contents in credit card scanner. (Closed)
Patch Set: Rebase Created 3 years, 11 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 23 matching lines...) Expand all
34 &autofill::kAutofillScanCardholderName, 34 &autofill::kAutofillScanCardholderName,
35 &features::kConsistentOmniboxGeolocation, 35 &features::kConsistentOmniboxGeolocation,
36 &features::kCredentialManagementAPI, 36 &features::kCredentialManagementAPI,
37 &features::kServiceWorkerPaymentApps, 37 &features::kServiceWorkerPaymentApps,
38 &features::kSimplifiedFullscreenUI, 38 &features::kSimplifiedFullscreenUI,
39 &features::kVrShell, 39 &features::kVrShell,
40 &features::kWebPayments, 40 &features::kWebPayments,
41 &kAndroidPayIntegrationV1, 41 &kAndroidPayIntegrationV1,
42 &kAndroidPayIntegrationV2, 42 &kAndroidPayIntegrationV2,
43 &kAndroidPaymentApps, 43 &kAndroidPaymentApps,
44 &kAutofillScanThemeDialog,
44 &kCCTExternalLinkHandling, 45 &kCCTExternalLinkHandling,
45 &kCCTPostMessageAPI, 46 &kCCTPostMessageAPI,
46 &kChromeHomeFeature, 47 &kChromeHomeFeature,
47 &kContextualSearchSingleActions, 48 &kContextualSearchSingleActions,
48 &kDownloadsUiFeature, 49 &kDownloadsUiFeature,
49 &kImportantSitesInCBD, 50 &kImportantSitesInCBD,
50 &kImprovedA2HS, 51 &kImprovedA2HS,
51 &kNativeAndroidHistoryManager, 52 &kNativeAndroidHistoryManager,
52 &kNoCreditCardAbort, 53 &kNoCreditCardAbort,
53 &kNTPFakeOmniboxTextFeature, 54 &kNTPFakeOmniboxTextFeature,
(...skipping 22 matching lines...) Expand all
76 // Alphabetical: 77 // Alphabetical:
77 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", 78 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
78 base::FEATURE_ENABLED_BY_DEFAULT}; 79 base::FEATURE_ENABLED_BY_DEFAULT};
79 80
80 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2", 81 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2",
81 base::FEATURE_DISABLED_BY_DEFAULT}; 82 base::FEATURE_DISABLED_BY_DEFAULT};
82 83
83 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps", 84 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps",
84 base::FEATURE_DISABLED_BY_DEFAULT}; 85 base::FEATURE_DISABLED_BY_DEFAULT};
85 86
87 const base::Feature kAutofillScanThemeDialog{"AutofillScanThemeDialog",
88 base::FEATURE_DISABLED_BY_DEFAULT};
89
86 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", 90 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
87 base::FEATURE_ENABLED_BY_DEFAULT}; 91 base::FEATURE_ENABLED_BY_DEFAULT};
88 92
89 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI", 93 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI",
90 base::FEATURE_ENABLED_BY_DEFAULT}; 94 base::FEATURE_ENABLED_BY_DEFAULT};
91 95
92 const base::Feature kChromeHomeFeature{"ChromeHome", 96 const base::Feature kChromeHomeFeature{"ChromeHome",
93 base::FEATURE_DISABLED_BY_DEFAULT}; 97 base::FEATURE_DISABLED_BY_DEFAULT};
94 98
95 const base::Feature kContextualSearchSingleActions{ 99 const base::Feature kContextualSearchSingleActions{
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 NOTREACHED(); 158 NOTREACHED();
155 return false; 159 return false;
156 } 160 }
157 161
158 bool RegisterChromeFeatureListJni(JNIEnv* env) { 162 bool RegisterChromeFeatureListJni(JNIEnv* env) {
159 return RegisterNativesImpl(env); 163 return RegisterNativesImpl(env);
160 } 164 }
161 165
162 } // namespace android 166 } // namespace android
163 } // namespace chrome 167 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | chrome/browser/ui/android/autofill/credit_card_scanner_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698