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

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: just the vector 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..3228a02efaf588dc5ffa4f89ba975696d105f9ca 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;
+ typedef std::vector<scoped_ptr<Strategy>> StrategyList;
danakj 2015/11/17 01:12:17 <___<... "using" at least also only used once >_
vmpstr 2015/11/17 23:26:24 There are other uses (it's a public typedef). Swit
explicit OverlayProcessor(OutputSurface* surface);
virtual ~OverlayProcessor();

Powered by Google App Engine
This is Rietveld 408576698