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

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

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: ifdef Created 3 years, 7 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ 303 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{
304 "SendBeaconThrowForBlobWithNonSimpleType", 304 "SendBeaconThrowForBlobWithNonSimpleType",
305 base::FEATURE_DISABLED_BY_DEFAULT}; 305 base::FEATURE_DISABLED_BY_DEFAULT};
306 306
307 #if defined(OS_ANDROID) 307 #if defined(OS_ANDROID)
308 // Autofill Accessibility in Android. 308 // Autofill Accessibility in Android.
309 // crbug.com/627860 309 // crbug.com/627860
310 const base::Feature kAndroidAutofillAccessibility{ 310 const base::Feature kAndroidAutofillAccessibility{
311 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT}; 311 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT};
312 312
313 // A browsing history manager implementation for Android.
314 const base::Feature kNativeAndroidHistoryManager{
315 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT};
316
317 // FeatureList definition for the Seccomp field trial. 313 // FeatureList definition for the Seccomp field trial.
318 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 314 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
319 base::FEATURE_ENABLED_BY_DEFAULT}; 315 base::FEATURE_ENABLED_BY_DEFAULT};
320 316
321 // Service worker based payment apps as defined by w3c here: 317 // Service worker based payment apps as defined by w3c here:
322 // https://w3c.github.io/webpayments-payment-apps-api/ 318 // https://w3c.github.io/webpayments-payment-apps-api/
323 const base::Feature kServiceWorkerPaymentApps{ 319 const base::Feature kServiceWorkerPaymentApps{
324 "ServiceWorkerPaymentApps", 320 "ServiceWorkerPaymentApps",
325 base::FEATURE_DISABLED_BY_DEFAULT}; 321 base::FEATURE_DISABLED_BY_DEFAULT};
326 322
(...skipping 13 matching lines...) Expand all
340 #endif 336 #endif
341 337
342 #if defined(OS_WIN) 338 #if defined(OS_WIN)
343 // Emergency "off switch" for new Windows sandbox security mitigation, 339 // Emergency "off switch" for new Windows sandbox security mitigation,
344 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 340 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
345 const base::Feature kWinSboxDisableExtensionPoints{ 341 const base::Feature kWinSboxDisableExtensionPoints{
346 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 342 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
347 #endif 343 #endif
348 344
349 } // namespace features 345 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698