Chromium Code Reviews| Index: content/child/runtime_features.cc | 
| diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc | 
| index 8e0e79818d667d06acc84414f91b8384fe33d847..c548cbc7429b279da0670794a027ef99710b15b8 100644 | 
| --- a/content/child/runtime_features.cc | 
| +++ b/content/child/runtime_features.cc | 
| @@ -31,8 +31,8 @@ static void SetRuntimeFeatureDefaultsForPlatform() { | 
| WebRuntimeFeatures::enableWebAudio( | 
| media::MediaCodecBridge::IsAvailable() && | 
| (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM)); | 
| - // Android does not support the Gamepad API. | 
| - WebRuntimeFeatures::enableGamepad(false); | 
| + // Enable Gamepad at runtime as Android supports the Gamepad API | 
| + WebRuntimeFeatures::enableGamepad(true); | 
| 
 
bajones
2014/02/28 23:56:11
Can't this line be removed now?
 
SaurabhK
2014/03/11 17:39:27
On 2014/02/28 23:56:11, bajones wrote:
Removed no
 
 | 
| // Android does not have support for PagePopup | 
| WebRuntimeFeatures::enablePagePopup(false); | 
| // Android does not yet support the Web Notification API. crbug.com/115320 |