| Index: third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp b/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
|
| index 218dba281826652b2019c29866dd611450c3da2a..8c51b9fdefc44742e8d9533bad2e402120077ff3 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
|
| @@ -27,7 +27,7 @@ void InspectorTaskRunner::appendTask(std::unique_ptr<Task> task) {
|
| MutexLocker lock(m_mutex);
|
| if (m_killed)
|
| return;
|
| - m_queue.append(std::move(task));
|
| + m_queue.push_back(std::move(task));
|
| m_condition.signal();
|
| }
|
|
|
|
|