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

Unified Diff: cc/debug/debug_rect_history.cc

Issue 1437413002: cc: Remove ScopedPtrVector and cc::remove_if. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/cc_tests.gyp ('k') | cc/debug/micro_benchmark_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/debug_rect_history.cc
diff --git a/cc/debug/debug_rect_history.cc b/cc/debug/debug_rect_history.cc
index 9fa90a5bd363e3617c42db2885a9bf3922809355..fc57e84c70a512cdaea124277badf8bb9df24c5b 100644
--- a/cc/debug/debug_rect_history.cc
+++ b/cc/debug/debug_rect_history.cc
@@ -78,7 +78,7 @@ void DebugRectHistory::SavePaintRects(LayerImpl* layer) {
}
for (unsigned i = 0; i < layer->children().size(); ++i)
- SavePaintRects(layer->children()[i]);
+ SavePaintRects(layer->children()[i].get());
}
void DebugRectHistory::SavePropertyChangedRects(
« no previous file with comments | « cc/cc_tests.gyp ('k') | cc/debug/micro_benchmark_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698