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

Unified Diff: cc/layer_tree_host_impl.cc

Issue 12379055: Changed SoftwareOutputDevice interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: cc/layer_tree_host_impl.cc
diff --git a/cc/layer_tree_host_impl.cc b/cc/layer_tree_host_impl.cc
index c6ce9b43adc2c6da8e856ff98edb7aa8ee16c0c4..486f283508670e5f465641b425ec0f5fc149c9d0 100644
--- a/cc/layer_tree_host_impl.cc
+++ b/cc/layer_tree_host_impl.cc
@@ -1086,7 +1086,7 @@ bool LayerTreeHostImpl::initializeRenderer(scoped_ptr<OutputSurface> outputSurfa
else if (outputSurface->context3d())
m_renderer = GLRenderer::create(this, outputSurface.get(), resourceProvider.get());
else if (outputSurface->software_device())
- m_renderer = SoftwareRenderer::create(this, resourceProvider.get(), outputSurface->software_device());
+ m_renderer = SoftwareRenderer::create(this, outputSurface.get(), resourceProvider.get());
if (!m_renderer)
return false;
« no previous file with comments | « cc/gl_renderer.cc ('k') | cc/output_surface.h » ('j') | cc/picture_layer_impl_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698