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

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

Issue 1980133002: Implement pointer lock API for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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/ChromeClient.h
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
index 5e08a772dc03e9d1ad2618dd4ecdd63abb0b5fe5..7b19b4c97724e0560ab5d997e99132368fa51aaa 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.h
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h
@@ -239,8 +239,8 @@ public:
virtual bool isSVGImageChromeClient() const { return false; }
- virtual bool requestPointerLock() { return false; }
- virtual void requestPointerUnlock() { }
+ virtual bool requestPointerLock(LocalFrame*) { return false; }
+ virtual void requestPointerUnlock(LocalFrame*) {}
virtual IntSize minimumWindowSize() const { return IntSize(100, 100); }
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/page/PointerLockController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698