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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.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/paint/PaintPropertyTreePrinter.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
index db1612b1d42b267f1c9c42054b4996bfa4d39047..1bf97ca1675af14e5c502aeffe77fc0e77368037 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
@@ -89,7 +89,7 @@ class PropertyTreePrinter {
for (unsigned i = 0; i < indent; i++)
stringBuilder.append(' ');
if (m_nodeToDebugString.contains(node))
- stringBuilder.append(m_nodeToDebugString.get(node));
+ stringBuilder.append(m_nodeToDebugString.at(node));
stringBuilder.append(String::format(" %p ", node));
stringBuilder.append(node->toString());
stringBuilder.append("\n");

Powered by Google App Engine
This is Rietveld 408576698