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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolverState.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/resolver/StyleResolverState.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
index 4693d2393ce3aa1cb938353bb1e2206995ee6bca..a7c6edb5d19f00f609fe8fe7975f4dd1411063c1 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
@@ -114,14 +114,14 @@ void StyleResolverState::setCustomPropertySetForApplyAtRule(
StylePropertySet* StyleResolverState::customPropertySetForApplyAtRule(
const String& string) {
- return m_customPropertySetsForApplyAtRule.get(string);
+ return m_customPropertySetsForApplyAtRule.at(string);
}
HeapHashMap<CSSPropertyID, Member<const CSSValue>>&
StyleResolverState::parsedPropertiesForPendingSubstitutionCache(
const CSSPendingSubstitutionValue& value) const {
HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map =
- m_parsedPropertiesForPendingSubstitutionCache.get(&value);
+ m_parsedPropertiesForPendingSubstitutionCache.at(&value);
if (!map) {
map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>;
m_parsedPropertiesForPendingSubstitutionCache.set(&value, map);
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698