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

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

Issue 2490443002: Make OffscreenCanvas an EventTarget (Closed)
Patch Set: pass API layout tests Created 4 years, 1 month 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 e0b6e08cd06df0f875cd53179f79c84f65ea0b89..0e172cdac0f23339543f2904f33ce5bae16526f7 100644
--- a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
+++ b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
@@ -239,6 +239,8 @@ ScriptPromise OffscreenCanvas::convertToBlob(ScriptState* scriptState,
DEFINE_TRACE(OffscreenCanvas) {
visitor->trace(m_context);
+ visitor->trace(m_executionContext);
+ EventTarget::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698