| 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 "content/public/common/content_switches.h" | 8 #include "content/public/common/content_switches.h" |
| 9 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" | 9 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 bool enable_webaudio = false; | 30 bool enable_webaudio = false; |
| 31 #if defined(ARCH_CPU_ARMEL) | 31 #if defined(ARCH_CPU_ARMEL) |
| 32 // WebAudio needs Android MediaCodec API | 32 // WebAudio needs Android MediaCodec API |
| 33 enable_webaudio = media::MediaCodecBridge::IsAvailable(); | 33 enable_webaudio = media::MediaCodecBridge::IsAvailable(); |
| 34 #endif // defined(ARCH_CPU_ARMEL) | 34 #endif // defined(ARCH_CPU_ARMEL) |
| 35 WebRuntimeFeatures::enableWebAudio(enable_webaudio); | 35 WebRuntimeFeatures::enableWebAudio(enable_webaudio); |
| 36 // Android does not support the Gamepad API. | 36 // Android does not support the Gamepad API. |
| 37 WebRuntimeFeatures::enableGamepad(false); | 37 WebRuntimeFeatures::enableGamepad(false); |
| 38 // Android does not have support for PagePopup | 38 // Android does not have support for PagePopup |
| 39 WebRuntimeFeatures::enablePagePopup(false); | 39 WebRuntimeFeatures::enablePagePopup(false); |
| 40 // datalist on Android is not enabled | |
| 41 WebRuntimeFeatures::enableDataListElement(false); | |
| 42 // Android does not yet support the Web Notification API. crbug.com/115320 | 40 // Android does not yet support the Web Notification API. crbug.com/115320 |
| 43 WebRuntimeFeatures::enableNotifications(false); | 41 WebRuntimeFeatures::enableNotifications(false); |
| 44 // Android does not yet support SharedWorker. crbug.com/154571 | 42 // Android does not yet support SharedWorker. crbug.com/154571 |
| 45 WebRuntimeFeatures::enableSharedWorker(false); | 43 WebRuntimeFeatures::enableSharedWorker(false); |
| 46 #endif // defined(OS_ANDROID) | 44 #endif // defined(OS_ANDROID) |
| 47 } | 45 } |
| 48 | 46 |
| 49 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( | 47 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( |
| 50 const CommandLine& command_line) { | 48 const CommandLine& command_line) { |
| 51 WebRuntimeFeatures::enableStableFeatures(true); | 49 WebRuntimeFeatures::enableStableFeatures(true); |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 WebRuntimeFeatures::enableInputModeAttribute(true); | 152 WebRuntimeFeatures::enableInputModeAttribute(true); |
| 155 | 153 |
| 156 if (command_line.HasSwitch(switches::kEnableFastTextAutosizing)) | 154 if (command_line.HasSwitch(switches::kEnableFastTextAutosizing)) |
| 157 WebRuntimeFeatures::enableFastTextAutosizing(true); | 155 WebRuntimeFeatures::enableFastTextAutosizing(true); |
| 158 | 156 |
| 159 if (command_line.HasSwitch(switches::kEnableRepaintAfterLayout)) | 157 if (command_line.HasSwitch(switches::kEnableRepaintAfterLayout)) |
| 160 WebRuntimeFeatures::enableRepaintAfterLayout(true); | 158 WebRuntimeFeatures::enableRepaintAfterLayout(true); |
| 161 } | 159 } |
| 162 | 160 |
| 163 } // namespace content | 161 } // namespace content |
| OLD | NEW |