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

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

Issue 2620963003: Remove flag for OCR theme. (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
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
45 &kCCTExternalLinkHandling, 44 &kCCTExternalLinkHandling,
46 &kCCTPostMessageAPI, 45 &kCCTPostMessageAPI,
47 &kChromeHomeFeature, 46 &kChromeHomeFeature,
48 &kContextualSearchSingleActions, 47 &kContextualSearchSingleActions,
49 &kDownloadsUiFeature, 48 &kDownloadsUiFeature,
50 &kImportantSitesInCBD, 49 &kImportantSitesInCBD,
51 &kImprovedA2HS, 50 &kImprovedA2HS,
52 &kNativeAndroidHistoryManager, 51 &kNativeAndroidHistoryManager,
53 &kNoCreditCardAbort, 52 &kNoCreditCardAbort,
54 &kNTPFakeOmniboxTextFeature, 53 &kNTPFakeOmniboxTextFeature,
(...skipping 22 matching lines...) Expand all
77 // Alphabetical: 76 // Alphabetical:
78 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", 77 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
79 base::FEATURE_ENABLED_BY_DEFAULT}; 78 base::FEATURE_ENABLED_BY_DEFAULT};
80 79
81 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2", 80 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2",
82 base::FEATURE_DISABLED_BY_DEFAULT}; 81 base::FEATURE_DISABLED_BY_DEFAULT};
83 82
84 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps", 83 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps",
85 base::FEATURE_DISABLED_BY_DEFAULT}; 84 base::FEATURE_DISABLED_BY_DEFAULT};
86 85
87 const base::Feature kAutofillScanThemeDialog{"AutofillScanThemeDialog",
88 base::FEATURE_DISABLED_BY_DEFAULT};
89
90 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", 86 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
91 base::FEATURE_ENABLED_BY_DEFAULT}; 87 base::FEATURE_ENABLED_BY_DEFAULT};
92 88
93 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI", 89 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI",
94 base::FEATURE_ENABLED_BY_DEFAULT}; 90 base::FEATURE_ENABLED_BY_DEFAULT};
95 91
96 const base::Feature kChromeHomeFeature{"ChromeHome", 92 const base::Feature kChromeHomeFeature{"ChromeHome",
97 base::FEATURE_DISABLED_BY_DEFAULT}; 93 base::FEATURE_DISABLED_BY_DEFAULT};
98 94
99 const base::Feature kContextualSearchSingleActions{ 95 const base::Feature kContextualSearchSingleActions{
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 NOTREACHED(); 154 NOTREACHED();
159 return false; 155 return false;
160 } 156 }
161 157
162 bool RegisterChromeFeatureListJni(JNIEnv* env) { 158 bool RegisterChromeFeatureListJni(JNIEnv* env) {
163 return RegisterNativesImpl(env); 159 return RegisterNativesImpl(env);
164 } 160 }
165 161
166 } // namespace android 162 } // namespace android
167 } // namespace chrome 163 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698