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 | |
181 if (command_line.HasSwitch(switches::kEnableNetworkInformation) || | 178 if (command_line.HasSwitch(switches::kEnableNetworkInformation) || |
182 command_line.HasSwitch( | 179 command_line.HasSwitch( |
183 switches::kEnableExperimentalWebPlatformFeatures)) { | 180 switches::kEnableExperimentalWebPlatformFeatures)) { |
184 WebRuntimeFeatures::enableNetworkInformation(true); | 181 WebRuntimeFeatures::enableNetworkInformation(true); |
185 } | 182 } |
186 | 183 |
187 if (command_line.HasSwitch(switches::kEnableCredentialManagerAPI)) | 184 if (command_line.HasSwitch(switches::kEnableCredentialManagerAPI)) |
188 WebRuntimeFeatures::enableCredentialManagerAPI(true); | 185 WebRuntimeFeatures::enableCredentialManagerAPI(true); |
189 | 186 |
190 if (command_line.HasSwitch(switches::kEnableViewport)) | 187 if (command_line.HasSwitch(switches::kEnableViewport)) |
191 WebRuntimeFeatures::enableCSSViewport(true); | 188 WebRuntimeFeatures::enableCSSViewport(true); |
192 | 189 |
193 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { | 190 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { |
194 WebRuntimeFeatures::enableSVG1DOM(false); | 191 WebRuntimeFeatures::enableSVG1DOM(false); |
195 } | 192 } |
196 | 193 |
197 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) | 194 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) |
198 WebRuntimeFeatures::enableReducedReferrerGranularity(true); | 195 WebRuntimeFeatures::enableReducedReferrerGranularity(true); |
199 } | 196 } |
200 | 197 |
201 } // namespace content | 198 } // namespace content |
OLD | NEW |