diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-05-05 15:22:25 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-05-05 15:22:44 +0200 |
commit | 4f62685dfa09d64a8fcd2de9ed0adb7fe5747b78 (patch) | |
tree | 9dc9c3ba8ab461f7ee3d444222246be5ed55ae3f /chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp | |
parent | 19de26b7efd6b993f2af26cf435f04c716d3f5bc (diff) | |
parent | bb09965444b5bb20b096a291445170876225268d (diff) | |
download | qtwebengine-chromium-4f62685dfa09d64a8fcd2de9ed0adb7fe5747b78.tar.gz |
Merge branch 'upstream-master' into 58-based
Change-Id: I8c280ca9068fdda9cf6276725bfb8608eccb497a
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp')
-rw-r--r-- | chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp index 8a1e33f315a..ebce92cd103 100644 --- a/chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp +++ b/chromium/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp @@ -197,9 +197,11 @@ void WebFrameWidgetImpl::sendResizeEventAndRepaint() { void WebFrameWidgetImpl::resizeVisualViewport(const WebSize& newSize) { // TODO(alexmos, kenrb): resizing behavior such as this should be changed - // to use Page messages. https://crbug.com/599688. - page()->frameHost().visualViewport().setSize(newSize); - page()->frameHost().visualViewport().clampToBoundaries(); + // to use Page messages. This uses the visual viewport size to set size on + // both the WebViewImpl size and the Page's VisualViewport. If there are + // multiple OOPIFs on a page, this will currently be set redundantly by + // each of them. See https://crbug.com/599688. + view()->resize(newSize); view()->didUpdateFullscreenSize(); } @@ -226,6 +228,11 @@ void WebFrameWidgetImpl::didExitFullscreen() { view()->didExitFullscreen(); } +void WebFrameWidgetImpl::setSuppressFrameRequestsWorkaroundFor704763Only( + bool suppressFrameRequests) { + page()->animator().setSuppressFrameRequestsWorkaroundFor704763Only( + suppressFrameRequests); +} void WebFrameWidgetImpl::beginFrame(double lastFrameTimeMonotonic) { TRACE_EVENT1("blink", "WebFrameWidgetImpl::beginFrame", "frameTime", lastFrameTimeMonotonic); |