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

Unified Diff: third_party/WebKit/Source/core/layout/line/RootInlineBox.h

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/RootInlineBox.h
diff --git a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
index 0db8a365af99471322639234c4ac55d3237587f2..a962d7ff674bfc1577b77f33666934f533f3dffc 100644
--- a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
+++ b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
@@ -159,7 +159,7 @@ class RootInlineBox : public InlineFlowBox {
if (m_floats)
m_floats->append(floatingBox);
else
- m_floats = wrapUnique(new Vector<LayoutBox*>(1, floatingBox));
+ m_floats = WTF::wrapUnique(new Vector<LayoutBox*>(1, floatingBox));
}
Vector<LayoutBox*>* floatsPtr() {

Powered by Google App Engine
This is Rietveld 408576698