| Index: third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
|
| index 1e1fe382b61df6f93c46e6e41f1fff2f685742cc..e1861a1e5899f462c1e7233e0ae62fe8cd28c4b4 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
|
| @@ -217,7 +217,7 @@ void DataConsumerHandleTestUtil::ReplayingHandle::Context::consume(
|
| bool fullyConsumed = (size + m_offset >= top().body().size());
|
| if (fullyConsumed) {
|
| m_offset = 0;
|
| - m_commands.removeFirst();
|
| + m_commands.pop_front();
|
| } else {
|
| m_offset += size;
|
| }
|
|
|