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

Unified Diff: third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 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
Index: third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h
diff --git a/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h b/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h
index f858b783f26962bed510d4a4f2e6520c5ed08254..8df1edf764492c2cd58db2c1f2d91f761dbde7f1 100644
--- a/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h
+++ b/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.h
@@ -108,7 +108,7 @@ class BytesConsumerTestUtil {
// Add a command to this handle. This function must be called BEFORE
// any BytesConsumer methods are called.
- void add(const Command& command) { m_commands.append(command); }
+ void add(const Command& command) { m_commands.push_back(command); }
Result beginRead(const char** buffer, size_t* available) override;
Result endRead(size_t readSize) override;

Powered by Google App Engine
This is Rietveld 408576698