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

Unified Diff: third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h

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/fonts/FallbackListCompositeKey.h
diff --git a/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h b/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
index a77f00a9e9e1110e9b7060f615cea4d1e8ee9343..77fa5541e63b9e3b0cccc2b6ca6aa40fc128292e 100644
--- a/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
+++ b/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
@@ -47,7 +47,7 @@ struct FallbackListCompositeKey {
m_auxiliaryBitmapFields(0) {}
void add(FontCacheKey key) {
- m_fontCacheKeys.append(key);
+ m_fontCacheKeys.push_back(key);
// Djb2 with the first bit reserved for deleted.
m_hash = (((m_hash << 5) + m_hash) + key.hash()) << 1;
}

Powered by Google App Engine
This is Rietveld 408576698