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

Unified Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.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/LocalFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
index 18f95199faf225ed6837ece12eee81a03b468512..940ace10541e4519db7d6ae6d6c44dda82d6a665 100644
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
@@ -1052,4 +1052,9 @@ std::unique_ptr<blink::WebURLLoader> LocalFrameClientImpl::CreateURLLoader() {
return web_frame_->CreateURLLoader();
}
+void LocalFrameClientImpl::AnnotatedRegionsChanged() {
+ if (web_frame_->Client())
dcheng 2017/06/07 20:22:35 Nit: no null check needed here, if LocalFrameClien
Łukasz Anforowicz 2017/06/08 16:29:24 Done - thanks for pointing this out (I was just ca
+ web_frame_->Client()->DraggableRegionsChanged();
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698