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

Unified Diff: Source/web/WebViewImpl.cpp

Issue 1301033002: Plumb CompositedDisplayList to WebViewImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Final checklist: cleanup ordering in WebCompositedDisplayList Created 5 years, 4 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/WebViewImpl.h ('k') | public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebViewImpl.cpp
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
index dd1a2a03a9dc7e9550e348bfdf5f574da71b05f4..c0684ff330e8d90c5df483608d3ed1c6a344af48 100644
--- a/Source/web/WebViewImpl.cpp
+++ b/Source/web/WebViewImpl.cpp
@@ -3368,6 +3368,16 @@ WebSize WebViewImpl::contentsPreferredMinimumSize()
return IntSize(widthScaled, heightScaled);
}
+void WebViewImpl::setCompositedDisplayList(PassOwnPtr<CompositedDisplayList> compositedDisplayList)
+{
+ m_compositedDisplayList.assign(compositedDisplayList);
+}
+
+WebCompositedDisplayList* WebViewImpl::compositedDisplayList()
+{
+ return &m_compositedDisplayList;
+}
+
void WebViewImpl::enableViewport()
{
settings()->setViewportEnabled(true);
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698