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

Unified Diff: third_party/WebKit/Source/core/layout/line/RootInlineBox.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/layout/line/RootInlineBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/line/RootInlineBox.cpp b/third_party/WebKit/Source/core/layout/line/RootInlineBox.cpp
index 329a87c653cf738521b0d948e8c30636e3238c86..7d7d3e68fa2d03085caf477ac32cd8659c0066ac 100644
--- a/third_party/WebKit/Source/core/layout/line/RootInlineBox.cpp
+++ b/third_party/WebKit/Source/core/layout/line/RootInlineBox.cpp
@@ -517,7 +517,7 @@ void RootInlineBox::setLineBreakInfo(LineLayoutItem obj,
EllipsisBox* RootInlineBox::ellipsisBox() const {
if (!hasEllipsisBox())
return nullptr;
- return gEllipsisBoxMap->get(this);
+ return gEllipsisBoxMap->at(this);
}
void RootInlineBox::removeLineBoxFromLayoutObject() {

Powered by Google App Engine
This is Rietveld 408576698