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

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

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « Source/modules/gamepad/GamepadDispatcher.cpp ('k') | Source/modules/gamepad/GamepadEvent.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 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GamepadEvent_h 5 #ifndef GamepadEvent_h
6 #define GamepadEvent_h 6 #define GamepadEvent_h
7 7
8 #include "modules/EventModules.h" 8 #include "modules/EventModules.h"
9 #include "modules/gamepad/Gamepad.h" 9 #include "modules/gamepad/Gamepad.h"
10 10
11 namespace WebCore { 11 namespace blink {
12 12
13 struct GamepadEventInit : public EventInit { 13 struct GamepadEventInit : public EventInit {
14 GamepadEventInit(); 14 GamepadEventInit();
15 15
16 Member<Gamepad> gamepad; 16 Member<Gamepad> gamepad;
17 }; 17 };
18 18
19 class GamepadEvent FINAL : public Event { 19 class GamepadEvent FINAL : public Event {
20 public: 20 public:
21 static PassRefPtrWillBeRawPtr<GamepadEvent> create() 21 static PassRefPtrWillBeRawPtr<GamepadEvent> create()
(...skipping 17 matching lines...) Expand all
39 virtual void trace(Visitor*) OVERRIDE; 39 virtual void trace(Visitor*) OVERRIDE;
40 40
41 private: 41 private:
42 GamepadEvent(); 42 GamepadEvent();
43 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Game pad*); 43 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Game pad*);
44 GamepadEvent(const AtomicString&, const GamepadEventInit&); 44 GamepadEvent(const AtomicString&, const GamepadEventInit&);
45 45
46 PersistentWillBeMember<Gamepad> m_gamepad; 46 PersistentWillBeMember<Gamepad> m_gamepad;
47 }; 47 };
48 48
49 } // namespace WebCore 49 } // namespace blink
50 50
51 #endif // GamepadEvent_h 51 #endif // GamepadEvent_h
OLDNEW
« no previous file with comments | « Source/modules/gamepad/GamepadDispatcher.cpp ('k') | Source/modules/gamepad/GamepadEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698