| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CSSPaintImageGeneratorImpl_h |
| #define CSSPaintImageGeneratorImpl_h |
| |
| #include "core/css/CSSPaintImageGenerator.h" |
| #include "core/css/cssom/CSSStyleValue.h" |
| #include "modules/ModulesExport.h" |
| #include "platform/bindings/ScopedPersistent.h" |
| #include "platform/geometry/IntSize.h" |
| #include "platform/heap/Handle.h" |
| #include "v8/include/v8.h" |
| |
| namespace blink { |
| |
| class CSSSyntaxDescriptor; |
| class Document; |
| class DocumentPaintDefinition; |
| class Image; |
| class PaintWorklet; |
| |
| class MODULES_EXPORT CSSPaintImageGeneratorImpl final |
| : public CSSPaintImageGenerator { |
| public: |
| static CSSPaintImageGenerator* Create(const String& name, |
| const Document&, |
| Observer*); |
| ~CSSPaintImageGeneratorImpl() override; |
| |
| // The |container_size| is the container size with subpixel snapping. |
| scoped_refptr<Image> Paint(const ImageResourceObserver&, |
| const IntSize& container_size, |
| const CSSStyleValueVector*) final; |
| const Vector<CSSPropertyID>& NativeInvalidationProperties() const final; |
| const Vector<AtomicString>& CustomInvalidationProperties() const final; |
| bool HasAlpha() const final; |
| const Vector<CSSSyntaxDescriptor>& InputArgumentTypes() const final; |
| bool IsImageGeneratorReady() const final; |
| |
| // Should be called from the PaintWorkletGlobalScope when a javascript class |
| // is registered with the same name. |
| void NotifyGeneratorReady(); |
| |
| bool GetValidDocumentDefinitionForTesting( |
| DocumentPaintDefinition*& definition) const { |
| return GetValidDocumentDefinition(definition); |
| } |
| unsigned GetRegisteredDefinitionCountForTesting() const; |
| |
| void Trace(blink::Visitor*) override; |
| |
| private: |
| CSSPaintImageGeneratorImpl(Observer*, PaintWorklet*, const String&); |
| CSSPaintImageGeneratorImpl(PaintWorklet*, const String&); |
| |
| bool HasDocumentDefinition() const; |
| // This function first checks whether the document definition with |name_| |
| // exists or not. If it does exist, the function fetches the document |
| // definition and checks if it is valid. The function returns true when the |
| // document definition exists and is valid. |
| bool GetValidDocumentDefinition(DocumentPaintDefinition*&) const; |
| |
| Member<Observer> observer_; |
| Member<PaintWorklet> paint_worklet_; |
| const String name_; |
| }; |
| |
| } // namespace blink |
| |
| #endif // CSSPaintImageGeneratorImpl_h |