| OLD | NEW |
| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 } | 88 } |
| 89 | 89 |
| 90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<Abst
ractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey
, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY, double u
iTimestamp) | 90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<Abst
ractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey
, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY, double u
iTimestamp) |
| 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 setUICreateTime(uiTimestamp); | 95 setUICreateTime(uiTimestamp); |
| 96 } | 96 } |
| 97 | 97 |
| 98 PassRefPtrWillBeRawPtr<EventDispatchMediator> GestureEvent::createMediator() |
| 99 { |
| 100 return GestureEventDispatchMediator::create(this); |
| 101 } |
| 102 |
| 98 DEFINE_TRACE(GestureEvent) | 103 DEFINE_TRACE(GestureEvent) |
| 99 { | 104 { |
| 100 MouseRelatedEvent::trace(visitor); | 105 MouseRelatedEvent::trace(visitor); |
| 101 } | 106 } |
| 102 | 107 |
| 103 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtrWillBeRawPt
r<GestureEvent> gestureEvent) | 108 GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtrWillBeRawPt
r<GestureEvent> gestureEvent) |
| 104 : EventDispatchMediator(gestureEvent) | 109 : EventDispatchMediator(gestureEvent) |
| 105 { | 110 { |
| 106 } | 111 } |
| 107 | 112 |
| 108 GestureEvent& GestureEventDispatchMediator::event() const | 113 GestureEvent& GestureEventDispatchMediator::event() const |
| 109 { | 114 { |
| 110 return toGestureEvent(EventDispatchMediator::event()); | 115 return toGestureEvent(EventDispatchMediator::event()); |
| 111 } | 116 } |
| 112 | 117 |
| 113 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher& dispatcher) co
nst | 118 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher& dispatcher) co
nst |
| 114 { | 119 { |
| 115 dispatcher.dispatch(); | 120 dispatcher.dispatch(); |
| 116 ASSERT(!event().defaultPrevented()); | 121 ASSERT(!event().defaultPrevented()); |
| 117 return event().defaultHandled() || event().defaultPrevented(); | 122 return event().defaultHandled() || event().defaultPrevented(); |
| 118 } | 123 } |
| 119 | 124 |
| 120 } // namespace blink | 125 } // namespace blink |
| OLD | NEW |