| Index: content/browser/gamepad/gamepad_platform_data_fetcher.cc
|
| diff --git a/content/browser/gamepad/gamepad_platform_data_fetcher.cc b/content/browser/gamepad/gamepad_platform_data_fetcher.cc
|
| index d889526e0d4f730a846463670dcdddf79c70d59c..38778350fdb535c0fc6ea64d48dbdc1d608c58f7 100644
|
| --- a/content/browser/gamepad/gamepad_platform_data_fetcher.cc
|
| +++ b/content/browser/gamepad/gamepad_platform_data_fetcher.cc
|
| @@ -1,4 +1,5 @@
|
| // Copyright (c) 2012 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.
|
|
|
| @@ -6,6 +7,8 @@
|
|
|
| #include "third_party/WebKit/public/platform/WebGamepads.h"
|
|
|
| +#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX) && !defined(OS_ANDROID)
|
| +
|
| namespace content {
|
|
|
| GamepadDataFetcherEmpty::GamepadDataFetcherEmpty() {
|
| @@ -17,3 +20,4 @@ void GamepadDataFetcherEmpty::GetGamepadData(blink::WebGamepads* pads,
|
| }
|
|
|
| } // namespace content
|
| +#endif
|
|
|