OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/child/runtime_features.h" | 5 #include "content/child/runtime_features.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/metrics/field_trial.h" | 8 #include "base/metrics/field_trial.h" |
9 #include "content/common/content_switches_internal.h" | 9 #include "content/common/content_switches_internal.h" |
10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 | 168 |
169 if (ui::IsOverlayScrollbarEnabled()) | 169 if (ui::IsOverlayScrollbarEnabled()) |
170 WebRuntimeFeatures::enableOverlayScrollbars(true); | 170 WebRuntimeFeatures::enableOverlayScrollbars(true); |
171 | 171 |
172 if (command_line.HasSwitch(switches::kEnableBleedingEdgeRenderingFastPaths)) | 172 if (command_line.HasSwitch(switches::kEnableBleedingEdgeRenderingFastPaths)) |
173 WebRuntimeFeatures::enableBleedingEdgeFastPaths(true); | 173 WebRuntimeFeatures::enableBleedingEdgeFastPaths(true); |
174 | 174 |
175 if (command_line.HasSwitch(switches::kEnablePreciseMemoryInfo)) | 175 if (command_line.HasSwitch(switches::kEnablePreciseMemoryInfo)) |
176 WebRuntimeFeatures::enablePreciseMemoryInfo(true); | 176 WebRuntimeFeatures::enablePreciseMemoryInfo(true); |
177 | 177 |
| 178 if (command_line.HasSwitch(switches::kEnableLayerSquashing)) |
| 179 WebRuntimeFeatures::enableLayerSquashing(true); |
| 180 |
178 if (command_line.HasSwitch(switches::kEnableNetworkInformation) || | 181 if (command_line.HasSwitch(switches::kEnableNetworkInformation) || |
179 command_line.HasSwitch( | 182 command_line.HasSwitch( |
180 switches::kEnableExperimentalWebPlatformFeatures)) { | 183 switches::kEnableExperimentalWebPlatformFeatures)) { |
181 WebRuntimeFeatures::enableNetworkInformation(true); | 184 WebRuntimeFeatures::enableNetworkInformation(true); |
182 } | 185 } |
183 | 186 |
184 if (command_line.HasSwitch(switches::kEnableCredentialManagerAPI)) | 187 if (command_line.HasSwitch(switches::kEnableCredentialManagerAPI)) |
185 WebRuntimeFeatures::enableCredentialManagerAPI(true); | 188 WebRuntimeFeatures::enableCredentialManagerAPI(true); |
186 | 189 |
187 if (command_line.HasSwitch(switches::kEnableViewport)) | 190 if (command_line.HasSwitch(switches::kEnableViewport)) |
188 WebRuntimeFeatures::enableCSSViewport(true); | 191 WebRuntimeFeatures::enableCSSViewport(true); |
189 | 192 |
190 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { | 193 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { |
191 WebRuntimeFeatures::enableSVG1DOM(false); | 194 WebRuntimeFeatures::enableSVG1DOM(false); |
192 } | 195 } |
193 | 196 |
194 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) | 197 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) |
195 WebRuntimeFeatures::enableReducedReferrerGranularity(true); | 198 WebRuntimeFeatures::enableReducedReferrerGranularity(true); |
196 } | 199 } |
197 | 200 |
198 } // namespace content | 201 } // namespace content |
OLD | NEW |