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

Unified Diff: Source/web/WebFrameWidgetImpl.cpp

Issue 1127013005: Implement layoutAndPaintAsync() for WebPagePopupImpl and WebFrameWidgetImpl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: It also fixes crbug.com/485501 Created 5 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
« no previous file with comments | « Source/web/WebFrameWidgetImpl.h ('k') | Source/web/WebPagePopupImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFrameWidgetImpl.cpp
diff --git a/Source/web/WebFrameWidgetImpl.cpp b/Source/web/WebFrameWidgetImpl.cpp
index 5622a774a770f879b0f5c303aee189c5da262ce7..90ea7baa0f68b43d85054fb64c270c58aacaa75b 100644
--- a/Source/web/WebFrameWidgetImpl.cpp
+++ b/Source/web/WebFrameWidgetImpl.cpp
@@ -292,6 +292,11 @@ bool WebFrameWidgetImpl::isTransparent() const
return false;
}
+void WebFrameWidgetImpl::layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback* callback)
+{
+ m_layerTreeView->layoutAndPaintAsync(callback);
+}
+
void WebFrameWidgetImpl::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback* callback)
{
m_layerTreeView->compositeAndReadbackAsync(callback);
« no previous file with comments | « Source/web/WebFrameWidgetImpl.h ('k') | Source/web/WebPagePopupImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698