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

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase 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/platform/graphics/gpu/SharedContextRateLimiter.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
index 03f9dadf86855c1acaa77e8842a460c4ec97cea2..f43d55881aaf395800dab4a7c8c0791262c9cd34 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
@@ -45,7 +45,7 @@ void SharedContextRateLimiter::tick() {
if (!gl || gl->GetGraphicsResetStatusKHR() != GL_NO_ERROR)
return;
- m_queries.append(0);
+ m_queries.push_back(0);
if (m_canUseSyncQueries)
gl->GenQueriesEXT(1, &m_queries.last());
if (m_canUseSyncQueries) {

Powered by Google App Engine
This is Rietveld 408576698