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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.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/platform/graphics/paint/PropertyTreeState.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.h b/third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.h
index c27d1fd5faf1a739f3188e49da63934e16b96caf..4bc47b12d3e873d48b453d12c87ddb4e2b4e6a3a 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.h
@@ -164,7 +164,7 @@ class PropertyTreeStatePrinter {
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