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

Unified Diff: Source/platform/graphics/GraphicsLayer.cpp

Issue 150653006: Remove the Vector::append overload that takes a Vector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 10 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 | « Source/platform/SharedBufferChunkReader.cpp ('k') | Source/platform/graphics/ThreadSafeDataTransport.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsLayer.cpp
diff --git a/Source/platform/graphics/GraphicsLayer.cpp b/Source/platform/graphics/GraphicsLayer.cpp
index 6dce54de73843895ead13354d91752a9ba59bbb3..fd292483a23c8b1dad18ad90b62a3bba72c795f5 100644
--- a/Source/platform/graphics/GraphicsLayer.cpp
+++ b/Source/platform/graphics/GraphicsLayer.cpp
@@ -531,7 +531,7 @@ void GraphicsLayer::collectTrackedRepaintRects(Vector<FloatRect>& rects) const
RepaintMap::iterator repaintIt = repaintRectMap().find(this);
if (repaintIt != repaintRectMap().end())
- rects.append(repaintIt->value);
+ rects.appendVector(repaintIt->value);
}
void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeFlags flags, RenderingContextMap& renderingContextMap) const
« no previous file with comments | « Source/platform/SharedBufferChunkReader.cpp ('k') | Source/platform/graphics/ThreadSafeDataTransport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698