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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/InlineFlowBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
index e00dda44dc6a4fd3138136e06821512d86ce8af8..eb9eb22898eab695a7fd3048b6746f66b20d8241 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
+++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
@@ -1183,7 +1183,7 @@ void InlineFlowBox::setLayoutOverflow(const LayoutRect& rect,
return;
if (!m_overflow)
- m_overflow = makeUnique<SimpleOverflowModel>(frameBox, frameBox);
+ m_overflow = WTF::makeUnique<SimpleOverflowModel>(frameBox, frameBox);
m_overflow->setLayoutOverflow(rect);
}
@@ -1195,7 +1195,7 @@ void InlineFlowBox::setVisualOverflow(const LayoutRect& rect,
return;
if (!m_overflow)
- m_overflow = makeUnique<SimpleOverflowModel>(frameBox, frameBox);
+ m_overflow = WTF::makeUnique<SimpleOverflowModel>(frameBox, frameBox);
m_overflow->setVisualOverflow(rect);
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | third_party/WebKit/Source/core/layout/line/RootInlineBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698