| Index: content/child/runtime_features.cc
|
| diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc
|
| index d77679acf6fcfad94435492e46fd9f503946e104..6a8a62904b40e930107ce120ad162d0597f0703a 100644
|
| --- a/content/child/runtime_features.cc
|
| +++ b/content/child/runtime_features.cc
|
| @@ -1,4 +1,5 @@
|
| // Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -32,8 +33,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);
|
| // Android does not have support for PagePopup
|
| WebRuntimeFeatures::enablePagePopup(false);
|
| // Android does not yet support the Web Notification API. crbug.com/115320
|
|
|