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

Unified Diff: third_party/WebKit/Source/core/events/TextEvent.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/TextEvent.cpp
diff --git a/third_party/WebKit/Source/core/events/TextEvent.cpp b/third_party/WebKit/Source/core/events/TextEvent.cpp
index 20d410906d2720d638a10e3c490316229a63ba03..5a30df67ef9d4c0bd90607d915c2feb734c5a46b 100644
--- a/third_party/WebKit/Source/core/events/TextEvent.cpp
+++ b/third_party/WebKit/Source/core/events/TextEvent.cpp
@@ -72,7 +72,7 @@ TextEvent::TextEvent(AbstractView* view,
TimeTicks::Now(),
view,
0,
- nullptr),
+ InputDeviceCapabilities::Null),
m_inputType(inputType),
m_data(data),
m_pastingFragment(nullptr),
@@ -91,7 +91,7 @@ TextEvent::TextEvent(AbstractView* view,
TimeTicks::Now(),
view,
0,
- nullptr),
+ InputDeviceCapabilities::Null),
m_inputType(TextEventInputPaste),
m_data(data),
m_pastingFragment(pastingFragment),
« no previous file with comments | « third_party/WebKit/Source/core/events/MouseEvent.cpp ('k') | third_party/WebKit/Source/core/events/TouchEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698