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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.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/LayoutBox.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.h b/third_party/WebKit/Source/core/layout/LayoutBox.h
index 76046f4458d40ee2af54b3e78345c67c9d5d5cad..b80f44201400f11923e1349c8b0701bb4bbd2dd2 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.h
@@ -94,7 +94,7 @@ struct LayoutBoxRareData {
SnapAreaSet& ensureSnapAreas() {
if (!m_snapAreas)
- m_snapAreas = wrapUnique(new SnapAreaSet);
+ m_snapAreas = WTF::wrapUnique(new SnapAreaSet);
return *m_snapAreas;
}
@@ -1483,7 +1483,7 @@ class CORE_EXPORT LayoutBox : public LayoutBoxModelObject {
LayoutBoxRareData& ensureRareData() {
if (!m_rareData)
- m_rareData = makeUnique<LayoutBoxRareData>();
+ m_rareData = WTF::makeUnique<LayoutBoxRareData>();
return *m_rareData.get();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698