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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.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: removing one more override Created 4 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/web/ChromeClientImpl.h
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.h b/third_party/WebKit/Source/web/ChromeClientImpl.h
index 819a9a814f2b72eae4fd0de243f31bdbed2819df..3b0a6a17667d62a20a6f138f55739719f48924f4 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.h
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.h
@@ -156,8 +156,8 @@ public:
bool shouldOpenModalDialogDuringPageDismissal(const DialogType&, const String& dialogMessage, Document::PageDismissalType) const override;
- bool requestPointerLock() override;
- void requestPointerUnlock() override;
+ bool requestPointerLock(LocalFrame*) override;
+ void requestPointerUnlock(LocalFrame*) override;
// AutofillClient pass throughs:
void didAssociateFormControls(const HeapVector<Member<Element>>&, LocalFrame*) override;

Powered by Google App Engine
This is Rietveld 408576698