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

Side by Side Diff: Source/core/events/GestureEvent.cpp

Issue 181153003: Make Event RefCountedGarbageCollected and implement trace() methods to the Event hierarcy (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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * 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 * * Redistributions in binary form must reproduce the above copyright 9 * * 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 { 87 {
88 } 88 }
89 89
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtr<AbstractView> vi ew, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKe y, bool shiftKey, bool metaKey, float deltaX, float deltaY) 90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtr<AbstractView> vi ew, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKe y, bool shiftKey, bool metaKey, float deltaX, float deltaY)
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), I ntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey) 91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), I ntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
92 , m_deltaX(deltaX) 92 , m_deltaX(deltaX)
93 , m_deltaY(deltaY) 93 , m_deltaY(deltaY)
94 { 94 {
95 } 95 }
96 96
97 void GestureEvent::trace(Visitor* visitor)
98 {
99 MouseRelatedEvent::trace(visitor);
100 }
101
97 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtr<GestureEve nt> gestureEvent) 102 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtr<GestureEve nt> gestureEvent)
98 : EventDispatchMediator(gestureEvent) 103 : EventDispatchMediator(gestureEvent)
99 { 104 {
100 } 105 }
101 106
102 GestureEvent* GestureEventDispatchMediator::event() const 107 GestureEvent* GestureEventDispatchMediator::event() const
103 { 108 {
104 return toGestureEvent(EventDispatchMediator::event()); 109 return toGestureEvent(EventDispatchMediator::event());
105 } 110 }
106 111
107 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) co nst 112 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) co nst
108 { 113 {
109 dispatcher->dispatch(); 114 dispatcher->dispatch();
110 ASSERT(!event()->defaultPrevented()); 115 ASSERT(!event()->defaultPrevented());
111 return event()->defaultHandled() || event()->defaultPrevented(); 116 return event()->defaultHandled() || event()->defaultPrevented();
112 } 117 }
113 118
114 } // namespace WebCore 119 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698