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 b4f66a1fee2f2713ea0eb8f19da8afa6c39a5403..351d91bc0c57bdc97d0d359745f06f52bde0c70b 100644 |
| --- a/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
| +++ b/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h |
| @@ -21,10 +21,12 @@ public: |
| static PaintWorklet* create(LocalFrame*, ExecutionContext*); |
| ~PaintWorklet() override; |
| - WorkletGlobalScope* workletGlobalScope() const final; |
| + WorkletGlobalScopeProxy* workletGlobalScopeProxy() const final; |
|
yhirano
2016/06/02 08:14:42
Why don't you return PaingWorkletGlobalScope* and
ikilpatrick
2016/06/02 18:26:00
Done.
|
| CSSPaintDefinition* findDefinition(const String& name); |
| void addPendingGenerator(const String& name, CSSPaintImageGeneratorImpl*); |
| + PaintWorkletGlobalScope* globalScopeForTesting() const { return m_paintWorkletGlobalScope.get(); } |
| + |
| DECLARE_VIRTUAL_TRACE(); |
| private: |