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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.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/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 4318b01f7cde3dae2e4e55f7c3b2daba809b6cb0..075627104e4918147f9a9af3e2478da6cf702562 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1562,7 +1562,7 @@ CounterDirectiveMap& ComputedStyle::accessCounterDirectives() {
const CounterDirectives ComputedStyle::getCounterDirectives(
const AtomicString& identifier) const {
if (const CounterDirectiveMap* directives = counterDirectives())
- return directives->get(identifier);
+ return directives->at(identifier);
return CounterDirectives();
}

Powered by Google App Engine
This is Rietveld 408576698