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

Side by Side Diff: sky/engine/core/events/GestureEvent.cpp

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/events/GestureEvent.h ('k') | sky/engine/core/events/HashChangeEvent.h » ('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) 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
102 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtr<GestureEve nt> gestureEvent) 97 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtr<GestureEve nt> gestureEvent)
103 : EventDispatchMediator(gestureEvent) 98 : EventDispatchMediator(gestureEvent)
104 { 99 {
105 } 100 }
106 101
107 GestureEvent* GestureEventDispatchMediator::event() const 102 GestureEvent* GestureEventDispatchMediator::event() const
108 { 103 {
109 return toGestureEvent(EventDispatchMediator::event()); 104 return toGestureEvent(EventDispatchMediator::event());
110 } 105 }
111 106
112 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) co nst 107 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) co nst
113 { 108 {
114 dispatcher->dispatch(); 109 dispatcher->dispatch();
115 ASSERT(!event()->defaultPrevented()); 110 ASSERT(!event()->defaultPrevented());
116 return event()->defaultHandled() || event()->defaultPrevented(); 111 return event()->defaultHandled() || event()->defaultPrevented();
117 } 112 }
118 113
119 } // namespace blink 114 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/events/GestureEvent.h ('k') | sky/engine/core/events/HashChangeEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698