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

Unified Diff: cc/output/overlay_processor.h

Issue 1437413002: cc: Remove ScopedPtrVector and cc::remove_if. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update 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
Index: cc/output/overlay_processor.h
diff --git a/cc/output/overlay_processor.h b/cc/output/overlay_processor.h
index 26bfe165a04a19909373da285d4c703327b04735..adcf1f99f4bb826e66ecd385368c405d3dfdaec4 100644
--- a/cc/output/overlay_processor.h
+++ b/cc/output/overlay_processor.h
@@ -31,7 +31,7 @@ class CC_EXPORT OverlayProcessor {
OverlayCandidateList* candidates,
gfx::Rect* damage_rect) = 0;
};
- typedef ScopedPtrVector<Strategy> StrategyList;
+ using StrategyList = std::vector<scoped_ptr<Strategy>>;
explicit OverlayProcessor(OutputSurface* surface);
virtual ~OverlayProcessor();

Powered by Google App Engine
This is Rietveld 408576698