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

Unified Diff: third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h

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/StyleNonInheritedVariables.h
diff --git a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
index ac7fa7b5291067756133696f61fff46f34dcd554..4893bb7e2f36bd9668093b1743d055176d329953 100644
--- a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
+++ b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
@@ -37,7 +37,7 @@ class StyleNonInheritedVariables {
void setRegisteredVariable(const AtomicString&, const CSSValue*);
const CSSValue* registeredVariable(const AtomicString& name) const {
- return m_registeredData.get(name);
+ return m_registeredData.at(name);
}
private:

Powered by Google App Engine
This is Rietveld 408576698