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

Unified Diff: third_party/WebKit/Source/core/css/MediaQueryEvaluator.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/MediaQueryEvaluator.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
index 95d11abedf982d34adec13b0e0264fd7dd912730..e2b803dde3dd69a305066612dd325f2b024fe6a9 100644
--- a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
+++ b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
@@ -817,7 +817,7 @@ bool MediaQueryEvaluator::eval(const MediaQueryExp* expr) const {
// Call the media feature evaluation function. Assume no prefix and let
// trampoline functions override the prefix if prefix is used.
- EvalFunc func = gFunctionMap->get(expr->mediaFeature().impl());
+ EvalFunc func = gFunctionMap->at(expr->mediaFeature().impl());
if (func)
return func(expr->expValue(), NoPrefix, *m_mediaValues);
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFaceCache.cpp ('k') | third_party/WebKit/Source/core/css/PropertyRegistry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698