Index: third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h b/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
index 5d3a016f563eb82a6d8efd01dfe8205ecae71a09..a438b0673062ccbe50ad4cb7f792dbc1d454a3b4 100644 |
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
@@ -18,7 +18,7 @@ class CSSPaintImageGeneratorImpl; |
class MODULES_EXPORT PaintWorklet final : public Worklet { |
WTF_MAKE_NONCOPYABLE(PaintWorklet); |
public: |
- static PaintWorklet* create(LocalFrame*, ExecutionContext*); |
+ static PaintWorklet* create(LocalFrame*); |
~PaintWorklet() override; |
PaintWorkletGlobalScope* workletGlobalScopeProxy() const final; |
@@ -28,7 +28,7 @@ public: |
DECLARE_VIRTUAL_TRACE(); |
private: |
- PaintWorklet(LocalFrame*, ExecutionContext*); |
+ explicit PaintWorklet(LocalFrame*); |
Member<PaintWorkletGlobalScope> m_paintWorkletGlobalScope; |
}; |