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

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

Issue 2839123003: Worklet: Introduce "pending tasks struct" concept defined in the Worklet spec (Closed)
Patch Set: address review comments Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 77c2de5b4962b5ec6d93ff17c7031bef30ecf863..9f64b02e686a73043deea1b8d0c3fd4d30fa597a 100644
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
@@ -23,12 +23,10 @@ PaintWorkletGlobalScope* PaintWorkletGlobalScope::Create(
const KURL& url,
const String& user_agent,
PassRefPtr<SecurityOrigin> security_origin,
- v8::Isolate* isolate,
- WorkletObjectProxy* object_proxy) {
+ v8::Isolate* isolate) {
PaintWorkletGlobalScope* paint_worklet_global_scope =
new PaintWorkletGlobalScope(frame, url, user_agent,
- std::move(security_origin), isolate,
- object_proxy);
+ std::move(security_origin), isolate);
paint_worklet_global_scope->ScriptController()->InitializeContextIfNeeded();
MainThreadDebugger::Instance()->ContextCreated(
paint_worklet_global_scope->ScriptController()->GetScriptState(),
@@ -42,14 +40,12 @@ PaintWorkletGlobalScope::PaintWorkletGlobalScope(
const KURL& url,
const String& user_agent,
PassRefPtr<SecurityOrigin> security_origin,
- v8::Isolate* isolate,
- WorkletObjectProxy* object_proxy)
+ v8::Isolate* isolate)
: MainThreadWorkletGlobalScope(frame,
url,
user_agent,
std::move(security_origin),
- isolate,
- object_proxy) {}
+ isolate) {}
PaintWorkletGlobalScope::~PaintWorkletGlobalScope() {}
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698