| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 138 |
| 139 if (command_line.HasSwitch(switches::kDisableFileSystem)) | 139 if (command_line.HasSwitch(switches::kDisableFileSystem)) |
| 140 WebRuntimeFeatures::enableFileSystem(false); | 140 WebRuntimeFeatures::enableFileSystem(false); |
| 141 | 141 |
| 142 if (command_line.HasSwitch(switches::kEnableExperimentalCanvasFeatures)) | 142 if (command_line.HasSwitch(switches::kEnableExperimentalCanvasFeatures)) |
| 143 WebRuntimeFeatures::enableExperimentalCanvasFeatures(true); | 143 WebRuntimeFeatures::enableExperimentalCanvasFeatures(true); |
| 144 | 144 |
| 145 if (command_line.HasSwitch(switches::kEnableAcceleratedJpegDecoding)) | 145 if (command_line.HasSwitch(switches::kEnableAcceleratedJpegDecoding)) |
| 146 WebRuntimeFeatures::enableDecodeToYUV(true); | 146 WebRuntimeFeatures::enableDecodeToYUV(true); |
| 147 | 147 |
| 148 if (command_line.HasSwitch(switches::kDisableDisplayList2dCanvas)) { | 148 if (command_line.HasSwitch(switches::kEnableDisplayList2dCanvas)) |
| 149 WebRuntimeFeatures::enableDisplayList2dCanvas(true); |
| 150 |
| 151 if (command_line.HasSwitch(switches::kDisableDisplayList2dCanvas)) |
| 149 WebRuntimeFeatures::enableDisplayList2dCanvas(false); | 152 WebRuntimeFeatures::enableDisplayList2dCanvas(false); |
| 150 } else if (command_line.HasSwitch(switches::kForceDisplayList2dCanvas)) { | 153 |
| 154 if (command_line.HasSwitch(switches::kForceDisplayList2dCanvas)) |
| 151 WebRuntimeFeatures::forceDisplayList2dCanvas(true); | 155 WebRuntimeFeatures::forceDisplayList2dCanvas(true); |
| 152 } else if (command_line.HasSwitch(switches::kEnableDisplayList2dCanvas)) { | |
| 153 WebRuntimeFeatures::enableDisplayList2dCanvas(true); | |
| 154 } else { | |
| 155 WebRuntimeFeatures::enableDisplayList2dCanvas( | |
| 156 base::FieldTrialList::FindFullName("DisplayList2dCanvas") == "Enabled" | |
| 157 ); | |
| 158 } | |
| 159 | 156 |
| 160 if (command_line.HasSwitch(switches::kEnableWebGLDraftExtensions)) | 157 if (command_line.HasSwitch(switches::kEnableWebGLDraftExtensions)) |
| 161 WebRuntimeFeatures::enableWebGLDraftExtensions(true); | 158 WebRuntimeFeatures::enableWebGLDraftExtensions(true); |
| 162 | 159 |
| 163 if (command_line.HasSwitch(switches::kEnableWebGLImageChromium)) | 160 if (command_line.HasSwitch(switches::kEnableWebGLImageChromium)) |
| 164 WebRuntimeFeatures::enableWebGLImageChromium(true); | 161 WebRuntimeFeatures::enableWebGLImageChromium(true); |
| 165 | 162 |
| 166 if (command_line.HasSwitch(switches::kEnableOverlayFullscreenVideo)) | 163 if (command_line.HasSwitch(switches::kEnableOverlayFullscreenVideo)) |
| 167 WebRuntimeFeatures::enableOverlayFullscreenVideo(true); | 164 WebRuntimeFeatures::enableOverlayFullscreenVideo(true); |
| 168 | 165 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 186 | 183 |
| 187 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { | 184 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { |
| 188 WebRuntimeFeatures::enableSVG1DOM(false); | 185 WebRuntimeFeatures::enableSVG1DOM(false); |
| 189 } | 186 } |
| 190 | 187 |
| 191 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) | 188 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) |
| 192 WebRuntimeFeatures::enableReducedReferrerGranularity(true); | 189 WebRuntimeFeatures::enableReducedReferrerGranularity(true); |
| 193 } | 190 } |
| 194 | 191 |
| 195 } // namespace content | 192 } // namespace content |
| OLD | NEW |