| 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 OffscreenCanvasRenderingContext2D_h | 5 #ifndef OffscreenCanvasRenderingContext2D_h |
| 6 #define OffscreenCanvasRenderingContext2D_h | 6 #define OffscreenCanvasRenderingContext2D_h |
| 7 | 7 |
| 8 #include "core/html/canvas/CanvasContextCreationAttributes.h" | 8 #include "core/html/canvas/CanvasContextCreationAttributes.h" |
| 9 #include "modules/canvas2d/BaseRenderingContext2D.h" | 9 #include "modules/canvas2d/BaseRenderingContext2D.h" |
| 10 #include "modules/offscreencanvas/OffscreenCanvasRenderingContext.h" | 10 #include "modules/offscreencanvas/OffscreenCanvasRenderingContext.h" |
| 11 #include "modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h" | 11 #include "modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class MODULES_EXPORT OffscreenCanvasRenderingContext2D final : public OffscreenC
anvasRenderingContext, public BaseRenderingContext2D { | 15 class MODULES_EXPORT OffscreenCanvasRenderingContext2D final : public OffscreenC
anvasRenderingContext, public BaseRenderingContext2D { |
| 16 DEFINE_WRAPPERTYPEINFO(); | 16 DEFINE_WRAPPERTYPEINFO(); |
| 17 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(OffscreenCanvasRenderingContext2D); | 17 USING_GARBAGE_COLLECTED_MIXIN(OffscreenCanvasRenderingContext2D); |
| 18 public: | 18 public: |
| 19 class Factory : public OffscreenCanvasRenderingContextFactory { | 19 class Factory : public OffscreenCanvasRenderingContextFactory { |
| 20 public: | 20 public: |
| 21 Factory() {} | 21 Factory() {} |
| 22 ~Factory() override {} | 22 ~Factory() override {} |
| 23 | 23 |
| 24 OffscreenCanvasRenderingContext* create(OffscreenCanvas* canvas, const C
anvasContextCreationAttributes& attrs) override | 24 OffscreenCanvasRenderingContext* create(OffscreenCanvas* canvas, const C
anvasContextCreationAttributes& attrs) override |
| 25 { | 25 { |
| 26 return new OffscreenCanvasRenderingContext2D(canvas, attrs); | 26 return new OffscreenCanvasRenderingContext2D(canvas, attrs); |
| 27 } | 27 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 void didDraw(const SkIRect& dirtyRect) final; | 60 void didDraw(const SkIRect& dirtyRect) final; |
| 61 | 61 |
| 62 bool stateHasFilter() final; | 62 bool stateHasFilter() final; |
| 63 SkImageFilter* stateGetFilter() final; | 63 SkImageFilter* stateGetFilter() final; |
| 64 | 64 |
| 65 void validateStateStack() final; | 65 void validateStateStack() final; |
| 66 | 66 |
| 67 bool hasAlpha() const override { return m_hasAlpha; } | 67 bool hasAlpha() const override { return m_hasAlpha; } |
| 68 bool isContextLost() const override; | 68 bool isContextLost() const override; |
| 69 | 69 |
| 70 PassRefPtrWillBeRawPtr<ImageBitmap> transferToImageBitmap(ExceptionState&) f
inal; | 70 RawPtr<ImageBitmap> transferToImageBitmap(ExceptionState&) final; |
| 71 | 71 |
| 72 protected: | 72 protected: |
| 73 OffscreenCanvasRenderingContext2D(OffscreenCanvas*, const CanvasContextCreat
ionAttributes& attrs); | 73 OffscreenCanvasRenderingContext2D(OffscreenCanvas*, const CanvasContextCreat
ionAttributes& attrs); |
| 74 DECLARE_VIRTUAL_TRACE(); | 74 DECLARE_VIRTUAL_TRACE(); |
| 75 | 75 |
| 76 private: | 76 private: |
| 77 bool m_hasAlpha; | 77 bool m_hasAlpha; |
| 78 bool m_originClean = true; | 78 bool m_originClean = true; |
| 79 OwnPtr<ImageBuffer> m_imageBuffer; | 79 OwnPtr<ImageBuffer> m_imageBuffer; |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace blink | 82 } // namespace blink |
| 83 | 83 |
| 84 #endif // OffscreenCanvasRenderingContext2D_h | 84 #endif // OffscreenCanvasRenderingContext2D_h |
| OLD | NEW |