| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "core/events/UIEventWithKeyState.h" | 21 #include "core/events/UIEventWithKeyState.h" |
| 22 | 22 |
| 23 namespace blink { | 23 namespace blink { |
| 24 | 24 |
| 25 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubbl
e, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, | 25 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubbl
e, bool cancelable, RawPtr<AbstractView> view, |
| 26 int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, In
putDeviceCapabilities* sourceCapabilities) | 26 int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, In
putDeviceCapabilities* sourceCapabilities) |
| 27 : UIEvent(type, canBubble, cancelable, platformTimeStamp, view, detail, sour
ceCapabilities) | 27 : UIEvent(type, canBubble, cancelable, platformTimeStamp, view, detail, sour
ceCapabilities) |
| 28 , m_modifiers(modifiers) | 28 , m_modifiers(modifiers) |
| 29 { | 29 { |
| 30 } | 30 } |
| 31 | 31 |
| 32 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubbl
e, bool cancelable, EventTarget* relatedTarget, PassRefPtrWillBeRawPtr<AbstractV
iew> view, | 32 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubbl
e, bool cancelable, EventTarget* relatedTarget, RawPtr<AbstractView> view, |
| 33 int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, In
putDeviceCapabilities* sourceCapabilities) | 33 int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, In
putDeviceCapabilities* sourceCapabilities) |
| 34 : UIEvent(type, canBubble, cancelable, relatedTarget, platformTimeStamp, vie
w, detail, sourceCapabilities) | 34 : UIEvent(type, canBubble, cancelable, relatedTarget, platformTimeStamp, vie
w, detail, sourceCapabilities) |
| 35 , m_modifiers(modifiers) | 35 , m_modifiers(modifiers) |
| 36 { | 36 { |
| 37 } | 37 } |
| 38 | 38 |
| 39 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, const EventMo
difierInit& initializer) | 39 UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, const EventMo
difierInit& initializer) |
| 40 : UIEvent(type, initializer) | 40 : UIEvent(type, initializer) |
| 41 , m_modifiers(0) | 41 , m_modifiers(0) |
| 42 { | 42 { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 UIEventWithKeyState* findEventWithKeyState(Event* event) | 151 UIEventWithKeyState* findEventWithKeyState(Event* event) |
| 152 { | 152 { |
| 153 for (Event* e = event; e; e = e->underlyingEvent()) | 153 for (Event* e = event; e; e = e->underlyingEvent()) |
| 154 if (e->isKeyboardEvent() || e->isMouseEvent()) | 154 if (e->isKeyboardEvent() || e->isMouseEvent()) |
| 155 return static_cast<UIEventWithKeyState*>(e); | 155 return static_cast<UIEventWithKeyState*>(e); |
| 156 return nullptr; | 156 return nullptr; |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| OLD | NEW |