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

Unified Diff: third_party/WebKit/Source/core/page/PointerLockController.h

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (Closed)
Patch Set: Fix nits Created 3 years, 11 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/page/PointerLockController.h
diff --git a/third_party/WebKit/Source/core/page/PointerLockController.h b/third_party/WebKit/Source/core/page/PointerLockController.h
index cea1abb727ba42a12d924ae2e030cfd7bf555f99..d4caa2fa4d8c6c59054fd522799f023a23dfa6f9 100644
--- a/third_party/WebKit/Source/core/page/PointerLockController.h
+++ b/third_party/WebKit/Source/core/page/PointerLockController.h
@@ -36,7 +36,7 @@ namespace blink {
class Element;
class Document;
class Page;
-class PlatformMouseEvent;
+class WebMouseEvent;
class CORE_EXPORT PointerLockController final
: public GarbageCollected<PointerLockController> {
@@ -55,7 +55,7 @@ class CORE_EXPORT PointerLockController final
void didAcquirePointerLock();
void didNotAcquirePointerLock();
void didLosePointerLock();
- void dispatchLockedMouseEvent(const PlatformMouseEvent&,
+ void dispatchLockedMouseEvent(const WebMouseEvent&,
const AtomicString& eventType);
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698