b2e03d64da3c09db5c7f414a9cbd6b2ae497c7a6
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / gamepad / GamepadButton.h
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GamepadButton_h
6 #define GamepadButton_h
7
8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "platform/heap/Handle.h"
10 #include "wtf/Vector.h"
11
12 namespace blink {
13
14 class GamepadButton FINAL : public GarbageCollected<GamepadButton>, public ScriptWrappable {
15 public:
16     static GamepadButton* create();
17
18     double value() const { return m_value; }
19     void setValue(double val) { m_value = val; }
20
21     bool pressed() const { return m_pressed; }
22     void setPressed(bool val) { m_pressed = val; }
23
24     void trace(Visitor*) { }
25
26 private:
27     GamepadButton();
28     double m_value;
29     bool m_pressed;
30 };
31
32 typedef HeapVector<Member<GamepadButton> > GamepadButtonVector;
33
34 } // namespace blink
35
36 #endif // GamepadButton_h