Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: Source/modules/gamepad/Gamepad.h

Issue 171563007: Revert of Updating Blink-side WebGamepad interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/gamepad/Gamepad.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, Google Inc. All rights reserved. 2 * Copyright (C) 2011, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met: 5 * modification, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 10 matching lines...) Expand all
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
23 * DAMAGE. 23 * DAMAGE.
24 */ 24 */
25 25
26 #ifndef Gamepad_h 26 #ifndef Gamepad_h
27 #define Gamepad_h 27 #define Gamepad_h
28 28
29 #include "bindings/v8/ScriptWrappable.h" 29 #include "bindings/v8/ScriptWrappable.h"
30 #include "heap/Handle.h" 30 #include "heap/Handle.h"
31 #include "public/platform/WebGamepad.h"
32 #include "wtf/RefCounted.h" 31 #include "wtf/RefCounted.h"
33 #include "wtf/Vector.h" 32 #include "wtf/Vector.h"
34 #include "wtf/text/WTFString.h" 33 #include "wtf/text/WTFString.h"
35 34
36 namespace WebCore { 35 namespace WebCore {
37 36
38 class Gamepad: public RefCountedWillBeGarbageCollectedFinalized<Gamepad>, public ScriptWrappable { 37 class Gamepad: public RefCountedWillBeGarbageCollectedFinalized<Gamepad>, public ScriptWrappable {
39 DECLARE_GC_INFO; 38 DECLARE_GC_INFO;
40 public: 39 public:
41 static PassRefPtrWillBeRawPtr<Gamepad> create() 40 static PassRefPtrWillBeRawPtr<Gamepad> create()
42 { 41 {
43 return adoptRefWillBeNoop(new Gamepad); 42 return adoptRefWillBeNoop(new Gamepad);
44 } 43 }
45 ~Gamepad(); 44 ~Gamepad();
46 45
47 typedef Vector<float> FloatVector; 46 typedef Vector<float> FloatVector;
48 47
49 const String& id() const { return m_id; } 48 const String& id() const { return m_id; }
50 void id(const String& id) { m_id = id; } 49 void id(const String& id) { m_id = id; }
51 50
52 unsigned index() const { return m_index; } 51 unsigned index() const { return m_index; }
53 void index(unsigned val) { m_index = val; } 52 void index(unsigned val) { m_index = val; }
54 53
55 bool connected() const { return m_connected; }
56 void connected(bool val) { m_connected = val; }
57
58 unsigned long long timestamp() const { return m_timestamp; } 54 unsigned long long timestamp() const { return m_timestamp; }
59 void timestamp(unsigned long long val) { m_timestamp = val; } 55 void timestamp(unsigned long long val) { m_timestamp = val; }
60 56
61 const String& mapping() const { return m_mapping; }
62 void mapping(const String& val) { m_mapping = val; }
63
64 const FloatVector& axes() const { return m_axes; } 57 const FloatVector& axes() const { return m_axes; }
65 void axes(unsigned count, float* data); 58 void axes(unsigned count, float* data);
66 59
67 const FloatVector& buttons() const { return m_buttons; } 60 const FloatVector& buttons() const { return m_buttons; }
68 #if defined(ENABLE_NEW_GAMEPAD_API)
69 void buttons(unsigned count, blink::WebGamepadButton* data);
70 #else
71 void buttons(unsigned count, float* data); 61 void buttons(unsigned count, float* data);
72 #endif
73 62
74 void trace(Visitor*); 63 void trace(Visitor*);
75 64
76 private: 65 private:
77 Gamepad(); 66 Gamepad();
78 String m_id; 67 String m_id;
79 unsigned m_index; 68 unsigned m_index;
80 bool m_connected;
81 unsigned long long m_timestamp; 69 unsigned long long m_timestamp;
82 String m_mapping;
83 FloatVector m_axes; 70 FloatVector m_axes;
84 FloatVector m_buttons; 71 FloatVector m_buttons;
85 }; 72 };
86 73
87 } // namespace WebCore 74 } // namespace WebCore
88 75
89 #endif // Gamepad_h 76 #endif // Gamepad_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/gamepad/Gamepad.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698