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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp

Issue 2776203002: Migrate WTF::Vector::remove() to ::erase() (Closed)
Patch Set: rebase, repatch VectorTest 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/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
index 0c898e8f5eb88e4613c68f080711183bf0c1ded8..ffe57b429bddca26215f7dd99587fe91ca8ac998 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
@@ -19,7 +19,7 @@ void V0CustomElementSyncMicrotaskQueue::doDispatch() {
break;
}
- m_queue.remove(0, i);
+ m_queue.erase(0, i);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/URLSearchParams.cpp ('k') | third_party/WebKit/Source/core/editing/EditingStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698