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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.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/platform/graphics/paint/DisplayItemClient.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
index 1748aa25f4cb352d0356e2a739e5276ed660aa05..521fb4ab8be8b694bed48e3b206b9b6d8f584d6d 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
@@ -35,7 +35,7 @@ DisplayItemClient::~DisplayItemClient() {
if (displayItemClientsShouldKeepAlive) {
for (const auto& item : *displayItemClientsShouldKeepAlive) {
CHECK(!item.value.contains(this))
- << "Short-lived DisplayItemClient: " << item.value.get(this)
+ << "Short-lived DisplayItemClient: " << item.value.at(this)
<< ". See crbug.com/609218.";
}
}

Powered by Google App Engine
This is Rietveld 408576698