| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PaintWorkletGlobalScope_h | 5 #ifndef PaintWorkletGlobalScope_h |
| 6 #define PaintWorkletGlobalScope_h | 6 #define PaintWorkletGlobalScope_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptValue.h" | 8 #include "bindings/core/v8/ScriptValue.h" |
| 9 #include "core/dom/ExecutionContext.h" | 9 #include "core/dom/ExecutionContext.h" |
| 10 #include "modules/worklet/WorkletGlobalScope.h" | 10 #include "modules/worklet/WorkletGlobalScope.h" |
| 11 #include "platform/graphics/ImageBuffer.h" |
| 11 | 12 |
| 12 namespace blink { | 13 namespace blink { |
| 13 | 14 |
| 15 class CSSPaintDefinition; |
| 16 class CSSPaintImageGeneratorImpl; |
| 17 class ExceptionState; |
| 18 |
| 14 class PaintWorkletGlobalScope : public WorkletGlobalScope { | 19 class PaintWorkletGlobalScope : public WorkletGlobalScope { |
| 15 DEFINE_WRAPPERTYPEINFO(); | 20 DEFINE_WRAPPERTYPEINFO(); |
| 16 public: | 21 public: |
| 17 static PassRefPtrWillBeRawPtr<PaintWorkletGlobalScope> create(LocalFrame*, c
onst KURL&, const String& userAgent, PassRefPtr<SecurityOrigin>, v8::Isolate*); | 22 static PassRefPtrWillBeRawPtr<PaintWorkletGlobalScope> create(LocalFrame*, c
onst KURL&, const String& userAgent, PassRefPtr<SecurityOrigin>, v8::Isolate*); |
| 18 ~PaintWorkletGlobalScope() override; | 23 ~PaintWorkletGlobalScope() override; |
| 19 | 24 |
| 20 bool isPaintWorkletGlobalScope() const final { return true; } | 25 bool isPaintWorkletGlobalScope() const final { return true; } |
| 21 void registerPaint(const String&, ScriptValue) { } | 26 void registerPaint(const String& name, const ScriptValue& ctor, ExceptionSta
te&); |
| 27 |
| 28 CSSPaintDefinition* findDefinition(const String& name); |
| 29 void addPendingGenerator(const String& name, PassRefPtrWillBeRawPtr<CSSPaint
ImageGeneratorImpl>); |
| 30 |
| 31 DECLARE_VIRTUAL_TRACE(); |
| 22 | 32 |
| 23 private: | 33 private: |
| 24 PaintWorkletGlobalScope(LocalFrame*, const KURL&, const String& userAgent, P
assRefPtr<SecurityOrigin>, v8::Isolate*); | 34 PaintWorkletGlobalScope(LocalFrame*, const KURL&, const String& userAgent, P
assRefPtr<SecurityOrigin>, v8::Isolate*); |
| 35 |
| 36 typedef WillBeHeapHashMap<String, RefPtrWillBeMember<CSSPaintDefinition>> De
finitionMap; |
| 37 DefinitionMap m_paintDefinitions; |
| 38 |
| 39 using GeneratorHashSet = WillBeHeapHashSet<WeakPtrWillBeWeakMember<CSSPaintI
mageGeneratorImpl>>; |
| 40 using PendingGeneratorMap = WillBeHeapHashMap<String, OwnPtrWillBeMember<Gen
eratorHashSet>>; |
| 41 PendingGeneratorMap m_pendingGenerators; |
| 25 }; | 42 }; |
| 26 | 43 |
| 27 DEFINE_TYPE_CASTS(PaintWorkletGlobalScope, ExecutionContext, context, context->i
sPaintWorkletGlobalScope(), context.isPaintWorkletGlobalScope()); | 44 DEFINE_TYPE_CASTS(PaintWorkletGlobalScope, ExecutionContext, context, context->i
sPaintWorkletGlobalScope(), context.isPaintWorkletGlobalScope()); |
| 28 | 45 |
| 29 } // namespace blink | 46 } // namespace blink |
| 30 | 47 |
| 31 #endif // PaintWorkletGlobalScope_h | 48 #endif // PaintWorkletGlobalScope_h |
| OLD | NEW |