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

Unified Diff: cc/tile_manager.cc

Issue 11418108: cc: Make the ScopedPtrVector and ScopedPtrDeque containers act like STL vector and deque. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android!! Created 7 years, 11 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/texture_uploader.cc ('k') | cc/tree_synchronizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tile_manager.cc
diff --git a/cc/tile_manager.cc b/cc/tile_manager.cc
index 70544295f2ed2c0db5b8bc5fcf5611895302ff53..929bb678469e2741e4a2150d4d0c0548661a99c3 100644
--- a/cc/tile_manager.cc
+++ b/cc/tile_manager.cc
@@ -184,7 +184,7 @@ TileManager::TileManager(
scoped_ptr<RasterThread> thread = make_scoped_ptr(
new RasterThread(thread_name_prefix +
StringPrintf("Worker%d", thread_number).c_str()));
- raster_threads_.append(thread.Pass());
+ raster_threads_.push_back(thread.Pass());
}
ResetBinCounts();
« no previous file with comments | « cc/texture_uploader.cc ('k') | cc/tree_synchronizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698