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

Unified Diff: cc/resources/raster_worker_pool.cc

Issue 16998003: Update CrOS to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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/resources/raster_worker_pool.cc
diff --git a/cc/resources/raster_worker_pool.cc b/cc/resources/raster_worker_pool.cc
index 22d3b7d376e62f3f868aa3e53c17b903264996e0..4234977e0b31d90c1a901320d4254ee41d22e4e0 100644
--- a/cc/resources/raster_worker_pool.cc
+++ b/cc/resources/raster_worker_pool.cc
@@ -411,7 +411,7 @@ void RasterWorkerPool::ScheduleRasterTasks(const RootTask& root) {
scoped_refptr<internal::WorkerPoolTask> new_root(root.internal_);
TaskGraph graph;
- BuildTaskGraph(new_root, &graph);
+ BuildTaskGraph(new_root.get(), &graph);
WorkerPool::SetTaskGraph(&graph);
root_.swap(new_root);
« no previous file with comments | « base/prefs/testing_pref_service.h ('k') | chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698