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

Unified Diff: Source/platform/graphics/ThreadSafeDataTransport.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/graphics/GraphicsLayer.cpp ('k') | Source/platform/network/FormDataBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/ThreadSafeDataTransport.cpp
diff --git a/Source/platform/graphics/ThreadSafeDataTransport.cpp b/Source/platform/graphics/ThreadSafeDataTransport.cpp
index 3a7949ffd44546de8203d894d5998dd3c007a7fc..a75eba87cd38ce174d8cd231c7d4609a57ae7da6 100644
--- a/Source/platform/graphics/ThreadSafeDataTransport.cpp
+++ b/Source/platform/graphics/ThreadSafeDataTransport.cpp
@@ -54,7 +54,7 @@ void ThreadSafeDataTransport::setData(SharedBuffer* buffer, bool allDataReceived
}
MutexLocker locker(m_mutex);
- m_newBufferQueue.append(newBufferQueue);
+ m_newBufferQueue.appendVector(newBufferQueue);
m_allDataReceived = allDataReceived;
}
« no previous file with comments | « Source/platform/graphics/GraphicsLayer.cpp ('k') | Source/platform/network/FormDataBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698