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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 2929493003: Move handling of DraggableRegionsChanged notification from "view" to "frame". (Closed)
Patch Set: Removing the CHECK used to find test coverage [found in LaunchWebAuthFlowFunctionTest]. Created 3 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/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index ba40bacdb245fd7a2502c6706b0933755db804ff..2cb9db855383fce3bf717a65ce89e794dbecd4a1 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -969,11 +969,6 @@ void ChromeClientImpl::RequestPointerUnlock(LocalFrame* frame) {
->RequestPointerUnlock();
}
-void ChromeClientImpl::AnnotatedRegionsChanged() {
- if (WebViewClient* client = web_view_->Client())
- client->DraggableRegionsChanged();
-}
-
void ChromeClientImpl::DidAssociateFormControlsAfterLoad(LocalFrame* frame) {
WebLocalFrameImpl* webframe = WebLocalFrameImpl::FromFrame(frame);
if (webframe->AutofillClient())

Powered by Google App Engine
This is Rietveld 408576698