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

Unified Diff: third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp

Issue 2294963002: Submit Compositor Frame from OffscreenCanvas on main (Closed)
Patch Set: update global interface listing Created 4 years, 3 months 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/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
diff --git a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
index 839a8687eb16ad21f15f55e5e2aa61a5422d58a0..f5c30299565b19c3bcb90b6d73856c6ce1779d2b 100644
--- a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
+++ b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
@@ -44,6 +44,16 @@ DEFINE_TRACE(OffscreenCanvasRenderingContext2D)
BaseRenderingContext2D::trace(visitor);
}
+void OffscreenCanvasRenderingContext2D::commit(ExecutionContext* executionContext)
+{
+ if (executionContext->isWorkerGlobalScope()) {
+ // TODO(563858/xlai): implement commit() on worker thread; currently, do
danakj 2016/09/02 21:51:00 Sorry it should be TODO(xlai): Stuff to do etc, s
xlai (Olivia) 2016/09/02 23:41:28 Done.
+ // nothing for worker thread.
+ return;
+ }
+ getOffscreenCanvas()->getOrCreateFrameDispatcher()->dispatchFrame();
+}
+
// BaseRenderingContext2D implementation
bool OffscreenCanvasRenderingContext2D::originClean() const
{

Powered by Google App Engine
This is Rietveld 408576698