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

Unified Diff: third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.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/platform/graphics/RecordingImageBufferSurface.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
index ec92dcc7e1cdccb275dcf801a42b1631715c871d..0a111a004e7f69c50ce6026661938f44d9380266 100644
--- a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
+++ b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
@@ -39,7 +39,7 @@ RecordingImageBufferSurface::~RecordingImageBufferSurface() {}
void RecordingImageBufferSurface::initializeCurrentFrame() {
static SkRTreeFactory rTreeFactory;
- m_currentFrame = wrapUnique(new SkPictureRecorder);
+ m_currentFrame = WTF::wrapUnique(new SkPictureRecorder);
SkCanvas* canvas = m_currentFrame->beginRecording(
size().width(), size().height(), &rTreeFactory);
// Always save an initial frame, to support resetting the top level matrix

Powered by Google App Engine
This is Rietveld 408576698