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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.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/frame/LocalFrame.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
index 10194ae2e0ee6b8753a7c889de86b2a236161b84..eff2a0ca095333329cdc9880221ce0fc37ee5136 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
@@ -120,7 +120,7 @@ class DragImageBuilder {
float pageScaleFactor = m_localFrame->host()->visualViewport().scale();
m_bounds.setWidth(m_bounds.width() * deviceScaleFactor * pageScaleFactor);
m_bounds.setHeight(m_bounds.height() * deviceScaleFactor * pageScaleFactor);
- m_pictureBuilder = wrapUnique(new SkPictureBuilder(
+ m_pictureBuilder = WTF::wrapUnique(new SkPictureBuilder(
SkRect::MakeIWH(m_bounds.width(), m_bounds.height())));
AffineTransform transform;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/frame/PageScaleConstraintsSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698