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

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

Issue 2763033002: [Doodle] Add an about:flags entry for the new Doodle API (Closed)
Patch Set: histograms Created 3 years, 9 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') | chrome/browser/android/logo_bridge.cc » ('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 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 base::FEATURE_ENABLED_BY_DEFAULT}; 173 base::FEATURE_ENABLED_BY_DEFAULT};
174 174
175 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; 175 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT};
176 176
177 const base::Feature kTabReparenting{"TabReparenting", 177 const base::Feature kTabReparenting{"TabReparenting",
178 base::FEATURE_ENABLED_BY_DEFAULT}; 178 base::FEATURE_ENABLED_BY_DEFAULT};
179 179
180 const base::Feature kUploadCrashReportsUsingJobScheduler{ 180 const base::Feature kUploadCrashReportsUsingJobScheduler{
181 "UploadCrashReportsUsingJobScheduler", base::FEATURE_DISABLED_BY_DEFAULT}; 181 "UploadCrashReportsUsingJobScheduler", base::FEATURE_DISABLED_BY_DEFAULT};
182 182
183 const base::Feature kUseNewDoodleApi{"UseNewDoodleApi",
184 base::FEATURE_DISABLED_BY_DEFAULT};
185
183 const base::Feature kUserMediaScreenCapturing{ 186 const base::Feature kUserMediaScreenCapturing{
184 "UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT}; 187 "UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT};
185 188
186 const base::Feature kWebPaymentsModifiers{"WebPaymentsModifiers", 189 const base::Feature kWebPaymentsModifiers{"WebPaymentsModifiers",
187 base::FEATURE_DISABLED_BY_DEFAULT}; 190 base::FEATURE_DISABLED_BY_DEFAULT};
188 191
189 const base::Feature kWebPaymentsSingleAppUiSkip{ 192 const base::Feature kWebPaymentsSingleAppUiSkip{
190 "WebPaymentsSingleAppUiSkip", base::FEATURE_ENABLED_BY_DEFAULT}; 193 "WebPaymentsSingleAppUiSkip", base::FEATURE_ENABLED_BY_DEFAULT};
191 194
192 const base::Feature kWebVRCardboardSupport{ 195 const base::Feature kWebVRCardboardSupport{
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 254 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
252 jdefault_value); 255 jdefault_value);
253 } 256 }
254 257
255 bool RegisterChromeFeatureListJni(JNIEnv* env) { 258 bool RegisterChromeFeatureListJni(JNIEnv* env) {
256 return RegisterNativesImpl(env); 259 return RegisterNativesImpl(env);
257 } 260 }
258 261
259 } // namespace android 262 } // namespace android
260 } // namespace chrome 263 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | chrome/browser/android/logo_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698