OLD | NEW |
1 /** | 1 /** |
2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
5 * Copyright (C) 2003, 2005, 2006, 2007 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 LocalDOMWindow* domWindow) | 90 LocalDOMWindow* domWindow) |
91 : UIEventWithKeyState( | 91 : UIEventWithKeyState( |
92 eventTypeForKeyboardEventType(key.type), | 92 eventTypeForKeyboardEventType(key.type), |
93 true, | 93 true, |
94 true, | 94 true, |
95 domWindow, | 95 domWindow, |
96 0, | 96 0, |
97 static_cast<PlatformEvent::Modifiers>(key.modifiers), | 97 static_cast<PlatformEvent::Modifiers>(key.modifiers), |
98 key.timeStampSeconds, | 98 key.timeStampSeconds, |
99 InputDeviceCapabilities::doesntFireTouchEventsSourceCapabilities()), | 99 InputDeviceCapabilities::doesntFireTouchEventsSourceCapabilities()), |
100 m_keyEvent(makeUnique<WebKeyboardEvent>(key)), | 100 m_keyEvent(WTF::makeUnique<WebKeyboardEvent>(key)), |
101 // TODO(crbug.com/482880): Fix this initialization to lazy initialization. | 101 // TODO(crbug.com/482880): Fix this initialization to lazy initialization. |
102 m_code(Platform::current()->domCodeStringFromEnum(key.domCode)), | 102 m_code(Platform::current()->domCodeStringFromEnum(key.domCode)), |
103 m_key(Platform::current()->domKeyStringFromEnum(key.domKey)), | 103 m_key(Platform::current()->domKeyStringFromEnum(key.domKey)), |
104 m_location(keyLocationCode(key)), | 104 m_location(keyLocationCode(key)), |
105 m_isComposing(hasCurrentComposition(domWindow)) { | 105 m_isComposing(hasCurrentComposition(domWindow)) { |
106 initLocationModifiers(m_location); | 106 initLocationModifiers(m_location); |
107 } | 107 } |
108 | 108 |
109 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, | 109 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, |
110 const KeyboardEventInit& initializer) | 110 const KeyboardEventInit& initializer) |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 m_modifiers |= PlatformEvent::IsRight; | 202 m_modifiers |= PlatformEvent::IsRight; |
203 break; | 203 break; |
204 } | 204 } |
205 } | 205 } |
206 | 206 |
207 DEFINE_TRACE(KeyboardEvent) { | 207 DEFINE_TRACE(KeyboardEvent) { |
208 UIEventWithKeyState::trace(visitor); | 208 UIEventWithKeyState::trace(visitor); |
209 } | 209 } |
210 | 210 |
211 } // namespace blink | 211 } // namespace blink |
OLD | NEW |