Index: third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp |
diff --git a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp |
index da83239897b1a635a0b06ee0ef7564c368bdf5fd..66c354d71901c4ad888f11ce23bfc660e0160a25 100644 |
--- a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp |
+++ b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp |
@@ -187,7 +187,7 @@ OffscreenCanvasFrameDispatcher* OffscreenCanvas::getOrCreateFrameDispatcher() { |
// The frame dispatcher connects the current thread of OffscreenCanvas |
// (either main or worker) to the browser process and remains unchanged |
// throughout the lifetime of this OffscreenCanvas. |
- m_frameDispatcher = wrapUnique(new OffscreenCanvasFrameDispatcherImpl( |
+ m_frameDispatcher = WTF::wrapUnique(new OffscreenCanvasFrameDispatcherImpl( |
m_clientId, m_sinkId, m_localId, m_nonceHigh, m_nonceLow, |
m_placeholderCanvasId, m_size.width(), m_size.height())); |
} |