diff options
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp')
-rw-r--r-- | chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp index 2751595e18a..a8f5c09f724 100644 --- a/chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp +++ b/chromium/third_party/WebKit/Source/web/WebPagePopupImpl.cpp @@ -406,6 +406,13 @@ void WebPagePopupImpl::setIsAcceleratedCompositingActive(bool enter) { } } +void WebPagePopupImpl::setSuppressFrameRequestsWorkaroundFor704763Only( + bool suppressFrameRequests) { + if (!m_page) + return; + m_page->animator().setSuppressFrameRequestsWorkaroundFor704763Only( + suppressFrameRequests); +} void WebPagePopupImpl::beginFrame(double lastFrameTimeMonotonic) { if (!m_page) return; |