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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutView.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/LayoutView.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
index 00192c6339801f290c7431551abf5232330f50a9..361d7d7d76a76a023e0722dc03da6b3fafc397a4 100644
--- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
@@ -236,7 +236,8 @@ void LayoutView::layout() {
if (pageLogicalHeight() && shouldUsePrintingLayout()) {
m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = logicalWidth();
if (!m_fragmentationContext) {
- m_fragmentationContext = wrapUnique(new ViewFragmentationContext(*this));
+ m_fragmentationContext =
+ WTF::wrapUnique(new ViewFragmentationContext(*this));
m_paginationStateChanged = true;
}
} else if (m_fragmentationContext) {
@@ -943,7 +944,7 @@ bool LayoutView::usesCompositing() const {
PaintLayerCompositor* LayoutView::compositor() {
if (!m_compositor)
- m_compositor = wrapUnique(new PaintLayerCompositor(*this));
+ m_compositor = WTF::wrapUnique(new PaintLayerCompositor(*this));
return m_compositor.get();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCell.cpp ('k') | third_party/WebKit/Source/core/layout/TextAutosizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698