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

Side by Side Diff: third_party/WebKit/Source/core/events/KeyboardEvent.cpp

Issue 2678683002: Delay instantiating InputDeviceCapabilities until accessed. (Closed)
Patch Set: rebased Created 3 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
OLDNEW
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
90 KeyboardEvent::KeyboardEvent(const WebKeyboardEvent& key, 90 KeyboardEvent::KeyboardEvent(const WebKeyboardEvent& key,
91 LocalDOMWindow* domWindow) 91 LocalDOMWindow* domWindow)
92 : UIEventWithKeyState( 92 : UIEventWithKeyState(
93 eventTypeForKeyboardEventType(key.type()), 93 eventTypeForKeyboardEventType(key.type()),
94 true, 94 true,
95 true, 95 true,
96 domWindow, 96 domWindow,
97 0, 97 0,
98 static_cast<PlatformEvent::Modifiers>(key.modifiers()), 98 static_cast<PlatformEvent::Modifiers>(key.modifiers()),
99 TimeTicks::FromSeconds(key.timeStampSeconds()), 99 TimeTicks::FromSeconds(key.timeStampSeconds()),
100 domWindow 100 InputDeviceCapabilities::None),
101 ? domWindow->getInputDeviceCapabilities()->firesTouchEvents(false)
102 : nullptr),
103 m_keyEvent(WTF::makeUnique<WebKeyboardEvent>(key)), 101 m_keyEvent(WTF::makeUnique<WebKeyboardEvent>(key)),
104 // TODO(crbug.com/482880): Fix this initialization to lazy initialization. 102 // TODO(crbug.com/482880): Fix this initialization to lazy initialization.
105 m_code(Platform::current()->domCodeStringFromEnum(key.domCode)), 103 m_code(Platform::current()->domCodeStringFromEnum(key.domCode)),
106 m_key(Platform::current()->domKeyStringFromEnum(key.domKey)), 104 m_key(Platform::current()->domKeyStringFromEnum(key.domKey)),
107 m_location(keyLocationCode(key)), 105 m_location(keyLocationCode(key)),
108 m_isComposing(hasCurrentComposition(domWindow)) { 106 m_isComposing(hasCurrentComposition(domWindow)) {
109 initLocationModifiers(m_location); 107 initLocationModifiers(m_location);
110 } 108 }
111 109
112 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, 110 KeyboardEvent::KeyboardEvent(const AtomicString& eventType,
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 m_modifiers |= PlatformEvent::IsRight; 203 m_modifiers |= PlatformEvent::IsRight;
206 break; 204 break;
207 } 205 }
208 } 206 }
209 207
210 DEFINE_TRACE(KeyboardEvent) { 208 DEFINE_TRACE(KeyboardEvent) {
211 UIEventWithKeyState::trace(visitor); 209 UIEventWithKeyState::trace(visitor);
212 } 210 }
213 211
214 } // namespace blink 212 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/GestureEvent.cpp ('k') | third_party/WebKit/Source/core/events/MouseEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698