Chromium Code Reviews| 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..85c1b2b1283207fa06532fad1295e4b52ed81060 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*); |
| + PaintWorklet(LocalFrame*); |
|
yhirano
2016/08/01 10:56:28
+explicit
Gleb Lanbin
2016/08/01 19:49:50
Done.
|
| Member<PaintWorkletGlobalScope> m_paintWorkletGlobalScope; |
| }; |