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

Unified Diff: third_party/WebKit/Source/core/style/StyleInheritedVariables.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/style/StyleInheritedVariables.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp b/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
index fc5e403476c3beab92fc69746e3074f0401f7558..f089a74055dd45bd33c04b029b1d654782091102 100644
--- a/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
+++ b/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
@@ -22,7 +22,7 @@ bool StyleInheritedVariables::operator==(
return false;
for (const auto& iter : m_data) {
- RefPtr<CSSVariableData> otherData = other.m_data.get(iter.key);
+ RefPtr<CSSVariableData> otherData = other.m_data.at(iter.key);
if (!dataEquivalent(iter.value, otherData))
return false;
}

Powered by Google App Engine
This is Rietveld 408576698