| 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() {}
|
|
|
|
|