summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp b/chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp
new file mode 100644
index 00000000000..cb64dc9ca77
--- /dev/null
+++ b/chromium/third_party/WebKit/Source/modules/gamepad/GamepadButton.cpp
@@ -0,0 +1,30 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "modules/gamepad/Gamepad.h"
+
+namespace WebCore {
+
+GamepadButton* GamepadButton::create()
+{
+ return new GamepadButton();
+}
+
+GamepadButton::GamepadButton()
+ : m_value(0.)
+ , m_pressed(false)
+{
+ ScriptWrappable::init(this);
+}
+
+GamepadButton::~GamepadButton()
+{
+}
+
+void GamepadButton::trace(Visitor* visitor)
+{
+}
+
+} // namespace WebCore