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

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

Issue 2910023002: Ensure RemoteViewportIntersection rect persists across frame navigations (Closed)
Patch Set: Created 3 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/core/frame/LocalFrame.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
index 3eefa4fb1b4e989b32a932a7221951863416ce44..7cafbe02ce0e9dfedff7e7523c0dea7409fc8e7e 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
@@ -1201,4 +1201,13 @@ WebPluginContainerBase* LocalFrame::GetWebPluginContainerBase(
return nullptr;
}
+void LocalFrame::SetViewportIntersectionFromParent(
+ const IntRect& viewport_intersection) {
+ if (remote_viewport_intersection_ != viewport_intersection) {
+ remote_viewport_intersection_ = viewport_intersection;
+ if (View())
+ View()->ScheduleAnimation();
+ }
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698