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

Unified Diff: cc/layer_impl.cc

Issue 11138029: cc: Remove wtf includes from layer_impl.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android build Created 8 years, 2 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 | « cc/layer_impl.h ('k') | cc/scrollbar_animation_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_impl.cc
diff --git a/cc/layer_impl.cc b/cc/layer_impl.cc
index 6d513a242c71f507d54465380b81160c22ea5c94..2b30363982259ae76ccf6d6ebc8ec18d13980b1f 100644
--- a/cc/layer_impl.cc
+++ b/cc/layer_impl.cc
@@ -107,7 +107,7 @@ void CCLayerImpl::clearChildList()
void CCLayerImpl::createRenderSurface()
{
ASSERT(!m_renderSurface);
- m_renderSurface = adoptPtr(new CCRenderSurface(this));
+ m_renderSurface = make_scoped_ptr(new CCRenderSurface(this));
setRenderTarget(this);
}
« no previous file with comments | « cc/layer_impl.h ('k') | cc/scrollbar_animation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698