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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceObserver.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/core/timing/PerformanceObserver.cpp
diff --git a/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp b/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
index 27c6d2ca153a7f6568c821287ea3e9ed481ae0cc..6b258b61e968eb1b9cb6d76d73cfb915e9745516 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
+++ b/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
@@ -71,7 +71,7 @@ void PerformanceObserver::disconnect() {
void PerformanceObserver::enqueuePerformanceEntry(PerformanceEntry& entry) {
ASSERT(isMainThread());
- m_performanceEntries.append(&entry);
+ m_performanceEntries.push_back(&entry);
if (m_performance)
m_performance->activateObserver(*this);
}

Powered by Google App Engine
This is Rietveld 408576698