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

Unified Diff: cc/CCLayerTreeHostTest.cpp

Issue 10940002: Add wrapper container for a vector of OwnPtr<T> (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: converts the rest of the Vector<OwnPtr<T>>s Created 8 years, 3 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/CCLayerTreeHostTest.cpp
diff --git a/cc/CCLayerTreeHostTest.cpp b/cc/CCLayerTreeHostTest.cpp
index 555eec7c5f5dc025a457a5f571511570dfd292a2..e5bdddac1a842111c9b1819e8119412c3bdae74a 100644
--- a/cc/CCLayerTreeHostTest.cpp
+++ b/cc/CCLayerTreeHostTest.cpp
@@ -1315,7 +1315,7 @@ public:
EXPECT_EQ(IntSize(60, 60), impl->deviceViewportSize());
CCLayerImpl* root = impl->rootLayer();
- CCLayerImpl* child = impl->rootLayer()->children()[0].get();
+ CCLayerImpl* child = impl->rootLayer()->children()[0];
// Positions remain in layout pixels.
EXPECT_EQ(IntPoint(0, 0), root->position());
« no previous file with comments | « cc/CCLayerTreeHostImplTest.cpp ('k') | cc/CCQuadCuller.cpp » ('j') | cc/TreeSynchronizer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698