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

Unified Diff: third_party/WebKit/Source/core/input/PointerEventManager.h

Issue 1774913004: Firing got/lost pointer capture events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Variable rename Created 4 years, 9 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/input/PointerEventManager.h
diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.h b/third_party/WebKit/Source/core/input/PointerEventManager.h
index 8845521bb879a9847a2e63e3aa15869d6d50bb21..5b74b984e4a43ed8ff323c057a6b17beac280d19 100644
--- a/third_party/WebKit/Source/core/input/PointerEventManager.h
+++ b/third_party/WebKit/Source/core/input/PointerEventManager.h
@@ -70,7 +70,9 @@ private:
}
RefPtrWillBeMember<EventTarget> target;
bool hasRecievedOverEvent;
- EventTargetAttributes() {}
+ EventTargetAttributes()
+ : target(nullptr)
+ , hasRecievedOverEvent(false) {}
EventTargetAttributes(PassRefPtrWillBeRawPtr<EventTarget> target,
bool hasRecievedOverEvent)
: target(target)
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLElement.cpp ('k') | third_party/WebKit/Source/core/input/PointerEventManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698