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

Unified Diff: third_party/WebKit/Source/core/css/FontFaceCache.cpp

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 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/css/FontFaceCache.cpp
diff --git a/third_party/WebKit/Source/core/css/FontFaceCache.cpp b/third_party/WebKit/Source/core/css/FontFaceCache.cpp
index fbc561c03f87bad7349039328e116b39577b82a5..d732bdf14c9d62c5dc00fc98718a2dc26140a20e 100644
--- a/third_party/WebKit/Source/core/css/FontFaceCache.cpp
+++ b/third_party/WebKit/Source/core/css/FontFaceCache.cpp
@@ -133,7 +133,7 @@ void FontFaceCache::incrementVersion() {
CSSSegmentedFontFace* FontFaceCache::get(const FontDescription& fontDescription,
const AtomicString& family) {
- TraitsMap* familyFontFaces = m_fontFaces.get(family);
+ TraitsMap* familyFontFaces = m_fontFaces.at(family);
if (!familyFontFaces || familyFontFaces->isEmpty())
return nullptr;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSStyleRule.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698