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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrameView.cpp

Issue 2929493003: Move handling of DraggableRegionsChanged notification from "view" to "frame". (Closed)
Patch Set: Also add main frame filtering to the browser-side. 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/core/frame/LocalFrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalFrameView.cpp b/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
index d73de59408045cbad62d330302496e7b8e58e166..2be1b263f5ce8de4ade05e49e9317c93e77a9db9 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
@@ -2822,8 +2822,9 @@ void LocalFrameView::UpdateDocumentAnnotatedRegions() const {
if (new_regions == document->AnnotatedRegions())
return;
document->SetAnnotatedRegions(new_regions);
- if (Page* page = frame_->GetPage())
- page->GetChromeClient().AnnotatedRegionsChanged();
+
+ DCHECK(frame_->Client());
+ frame_->Client()->AnnotatedRegionsChanged();
}
void LocalFrameView::DidAttachDocument() {

Powered by Google App Engine
This is Rietveld 408576698