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

Unified Diff: third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp

Issue 2584643002: Revamp OffscreenCanvas commit flow (Closed)
Patch Set: rebase and fix conflict 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/offscreencanvas/OffscreenCanvas.cpp
diff --git a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
index fa4679ac65ec3e2566f85d439e0e8ee886c30d42..4c3d4e0421fbbd2b85ca16d1ce435b634533a1ca 100644
--- a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
+++ b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
@@ -213,8 +213,8 @@ OffscreenCanvasFrameDispatcher* OffscreenCanvas::getOrCreateFrameDispatcher() {
// (either main or worker) to the browser process and remains unchanged
// throughout the lifetime of this OffscreenCanvas.
m_frameDispatcher = WTF::wrapUnique(new OffscreenCanvasFrameDispatcherImpl(
- m_clientId, m_sinkId, m_localId, m_nonceHigh, m_nonceLow,
- m_placeholderCanvasId, m_size.width(), m_size.height()));
+ m_clientId, m_sinkId, m_placeholderCanvasId, m_size.width(),
+ m_size.height()));
}
return m_frameDispatcher.get();
}

Powered by Google App Engine
This is Rietveld 408576698