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

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

Issue 2719333002: second stage
Patch Set: Need to get around resource loading without web/ 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 | « content/public/common/content_features.h ('k') | content/renderer/render_frame_impl.h » ('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 "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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 }; 110 };
111 111
112 // Enables the memory coordinator. 112 // Enables the memory coordinator.
113 // WARNING: 113 // WARNING:
114 // The memory coordinator is not ready for use and enabling this may cause 114 // The memory coordinator is not ready for use and enabling this may cause
115 // unexpected memory regression at this point. Please do not enable this. 115 // unexpected memory regression at this point. Please do not enable this.
116 const base::Feature kMemoryCoordinator { 116 const base::Feature kMemoryCoordinator {
117 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT 117 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT
118 }; 118 };
119 119
120 // Causes the implementations of MimeHandlerViews to use out-of-process iframes.
121 const base::Feature kMimeHandlerViewCrossProcessFrames{
122 "MimeHandlerViewCrossProcessFrames", base::FEATURE_DISABLED_BY_DEFAULT};
123
120 // Kill switch for Web Notification content images. 124 // Kill switch for Web Notification content images.
121 const base::Feature kNotificationContentImage{"NotificationContentImage", 125 const base::Feature kNotificationContentImage{"NotificationContentImage",
122 base::FEATURE_ENABLED_BY_DEFAULT}; 126 base::FEATURE_ENABLED_BY_DEFAULT};
123 // An experiment forcing events to be non-blocking when the main thread is 127 // An experiment forcing events to be non-blocking when the main thread is
124 // deemed unresponsive. See crbug.com/599609. 128 // deemed unresponsive. See crbug.com/599609.
125 const base::Feature kMainThreadBusyScrollIntervention{ 129 const base::Feature kMainThreadBusyScrollIntervention{
126 "MainThreadBusyScrollIntervention", base::FEATURE_DISABLED_BY_DEFAULT}; 130 "MainThreadBusyScrollIntervention", base::FEATURE_DISABLED_BY_DEFAULT};
127 131
128 // An experiment to optimize resource loading IPC for small resources. 132 // An experiment to optimize resource loading IPC for small resources.
129 // http://crbug.com/580928 133 // http://crbug.com/580928
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 #endif // !defined(OS_ANDROID) 302 #endif // !defined(OS_ANDROID)
299 303
300 #if defined(OS_WIN) 304 #if defined(OS_WIN)
301 // Emergency "off switch" for new Windows sandbox security mitigation, 305 // Emergency "off switch" for new Windows sandbox security mitigation,
302 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 306 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
303 const base::Feature kWinSboxDisableExtensionPoints{ 307 const base::Feature kWinSboxDisableExtensionPoints{
304 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 308 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
305 #endif 309 #endif
306 310
307 } // namespace features 311 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698