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

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

Issue 2807433003: No pointer captured when the pointer lock is applied (Closed)
Patch Set: pointer lock Created 3 years, 7 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 6d1280c8b227377de56e9f04c08c9fc9973ff1f1..bc782422963249c402142886a7a13fcfa40bc97c 100644
--- a/third_party/WebKit/Source/core/input/PointerEventManager.h
+++ b/third_party/WebKit/Source/core/input/PointerEventManager.h
@@ -62,6 +62,7 @@ class CORE_EXPORT PointerEventManager
void SetPointerCapture(int, EventTarget*);
void ReleasePointerCapture(int, EventTarget*);
+ void ReleaseMousePointerCapture();
// See Element::hasPointerCapture(int).
bool HasPointerCapture(int, const EventTarget*) const;
@@ -83,6 +84,9 @@ class CORE_EXPORT PointerEventManager
// |m_touchIdsForCanceledPointerdowns|.
bool PrimaryPointerdownCanceled(uint32_t unique_touch_event_id);
+ void ProcessPendingPointerCapture(const WebMouseEvent&,
+ const Vector<WebMouseEvent>&);
+
private:
typedef HeapHashMap<int,
Member<EventTarget>,

Powered by Google App Engine
This is Rietveld 408576698