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

Side by Side Diff: content/public/common/content_features.cc

Issue 2762123006: Android Autofill Accessibility, Phase I (Closed)
Patch Set: Adds histograms for histograms test. Created 3 years, 8 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_features.h" 6 #include "content/public/common/content_features.h"
7 7
8 namespace features { 8 namespace features {
9 9
10 // All features in alphabetical order. 10 // All features in alphabetical order.
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 base::FEATURE_ENABLED_BY_DEFAULT}; 192 base::FEATURE_ENABLED_BY_DEFAULT};
193 193
194 // Navigation preload feature of service workers. 194 // Navigation preload feature of service workers.
195 // Enables this base::Feature by default for Origin-Trial, but enables the 195 // Enables this base::Feature by default for Origin-Trial, but enables the
196 // corresponding blink::WebRuntimeFeatures only when '--enable-features' command 196 // corresponding blink::WebRuntimeFeatures only when '--enable-features' command
197 // line flag is given. See the comments in runtime_features.cc and 197 // line flag is given. See the comments in runtime_features.cc and
198 // service_worker_version.h for the details. 198 // service_worker_version.h for the details.
199 const base::Feature kServiceWorkerNavigationPreload{ 199 const base::Feature kServiceWorkerNavigationPreload{
200 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT}; 200 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT};
201 201
202 // Autofill Accessibility in Android.
203 // crbug.com/627860
204 const base::Feature kAndroidAutofillAccessibility{
205 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT};
206
202 // http://tc39.github.io/ecmascript_sharedmem/shmem.html 207 // http://tc39.github.io/ecmascript_sharedmem/shmem.html
203 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer", 208 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer",
204 base::FEATURE_DISABLED_BY_DEFAULT}; 209 base::FEATURE_DISABLED_BY_DEFAULT};
205 210
206 // Paint invalidation based on slimming paint. See https://goo.gl/eQczQW 211 // Paint invalidation based on slimming paint. See https://goo.gl/eQczQW
207 const base::Feature kSlimmingPaintInvalidation{ 212 const base::Feature kSlimmingPaintInvalidation{
208 "SlimmingPaintInvalidation", base::FEATURE_ENABLED_BY_DEFAULT}; 213 "SlimmingPaintInvalidation", base::FEATURE_ENABLED_BY_DEFAULT};
209 214
210 // Throttle Blink timers in out-of-view cross origin frames. 215 // Throttle Blink timers in out-of-view cross origin frames.
211 const base::Feature kTimerThrottlingForHiddenFrames{ 216 const base::Feature kTimerThrottlingForHiddenFrames{
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 #endif // !defined(OS_ANDROID) 304 #endif // !defined(OS_ANDROID)
300 305
301 #if defined(OS_WIN) 306 #if defined(OS_WIN)
302 // Emergency "off switch" for new Windows sandbox security mitigation, 307 // Emergency "off switch" for new Windows sandbox security mitigation,
303 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 308 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
304 const base::Feature kWinSboxDisableExtensionPoints{ 309 const base::Feature kWinSboxDisableExtensionPoints{
305 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 310 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
306 #endif 311 #endif
307 312
308 } // namespace features 313 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698