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

Unified Diff: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp

Issue 2029163002: Worklets - Change inheritance heirarchy of WorkletGlobalScope (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase. Created 4 years, 6 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/csspaint/PaintWorkletGlobalScope.cpp
diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
index eefcb39e774329b57463449d659f11bfc6c2dd13..1f33dae2b993faefe2992108a8c4627844348b23 100644
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
@@ -25,7 +25,7 @@ PaintWorkletGlobalScope* PaintWorkletGlobalScope::create(LocalFrame* frame, cons
}
PaintWorkletGlobalScope::PaintWorkletGlobalScope(LocalFrame* frame, const KURL& url, const String& userAgent, PassRefPtr<SecurityOrigin> securityOrigin, v8::Isolate* isolate)
- : WorkletGlobalScope(frame, url, userAgent, securityOrigin, isolate)
+ : MainThreadWorkletGlobalScope(frame, url, userAgent, securityOrigin, isolate)
{
}
@@ -153,7 +153,7 @@ DEFINE_TRACE(PaintWorkletGlobalScope)
{
visitor->trace(m_paintDefinitions);
visitor->trace(m_pendingGenerators);
- WorkletGlobalScope::trace(visitor);
+ MainThreadWorkletGlobalScope::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698