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

Unified Diff: third_party/WebKit/Source/platform/heap/ThreadState.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h Created 3 years, 11 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/platform/heap/ThreadState.cpp
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
index 6ae1096dacf00a01271040cb4cd6b5fd044a5a1e..fa04eda6ea2814d6d4ea93f8e6ccceb6981c6e72 100644
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
@@ -1465,7 +1465,7 @@ void ThreadState::addInterruptor(
SafePointScope scope(BlinkGC::HeapPointersOnStack);
{
MutexLocker locker(m_heap->threadAttachMutex());
- m_interruptors.append(std::move(interruptor));
+ m_interruptors.push_back(std::move(interruptor));
}
}

Powered by Google App Engine
This is Rietveld 408576698