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 "core/html/canvas/CanvasRenderingContext.h" | 9 #include "core/html/canvas/CanvasRenderingContext.h" |
10 #include "core/html/canvas/CanvasRenderingContextFactory.h" | 10 #include "core/html/canvas/CanvasRenderingContextFactory.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 bool is2d() const override { return true; } | 45 bool is2d() const override { return true; } |
46 void setOffscreenCanvasGetContextResult(OffscreenRenderingContext&) final; | 46 void setOffscreenCanvasGetContextResult(OffscreenRenderingContext&) final; |
47 void setIsHidden(bool) final { ASSERT_NOT_REACHED(); } | 47 void setIsHidden(bool) final { ASSERT_NOT_REACHED(); } |
48 void stop() final { ASSERT_NOT_REACHED(); } | 48 void stop() final { ASSERT_NOT_REACHED(); } |
49 void setCanvasGetContextResult(RenderingContext&) final {} | 49 void setCanvasGetContextResult(RenderingContext&) final {} |
50 void clearRect(double x, double y, double width, double height) override { | 50 void clearRect(double x, double y, double width, double height) override { |
51 BaseRenderingContext2D::clearRect(x, y, width, height); | 51 BaseRenderingContext2D::clearRect(x, y, width, height); |
52 } | 52 } |
53 PassRefPtr<Image> getImage(AccelerationHint, SnapshotReason) const final; | 53 PassRefPtr<Image> getImage(AccelerationHint, SnapshotReason) const final; |
54 ImageData* toImageData(SnapshotReason) const override; | 54 ImageData* toImageData(SnapshotReason) const override; |
| 55 void reset() override; |
55 | 56 |
56 // BaseRenderingContext2D implementation | 57 // BaseRenderingContext2D implementation |
57 bool originClean() const final; | 58 bool originClean() const final; |
58 void setOriginTainted() final; | 59 void setOriginTainted() final; |
59 bool wouldTaintOrigin(CanvasImageSource*, ExecutionContext*) final; | 60 bool wouldTaintOrigin(CanvasImageSource*, ExecutionContext*) final; |
60 | 61 |
61 int width() const final; | 62 int width() const final; |
62 int height() const final; | 63 int height() const final; |
63 | 64 |
64 bool hasImageBuffer() const final; | 65 bool hasImageBuffer() const final; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 103 |
103 DEFINE_TYPE_CASTS(OffscreenCanvasRenderingContext2D, | 104 DEFINE_TYPE_CASTS(OffscreenCanvasRenderingContext2D, |
104 CanvasRenderingContext, | 105 CanvasRenderingContext, |
105 context, | 106 context, |
106 context->is2d() && context->getOffscreenCanvas(), | 107 context->is2d() && context->getOffscreenCanvas(), |
107 context.is2d() && context.getOffscreenCanvas()); | 108 context.is2d() && context.getOffscreenCanvas()); |
108 | 109 |
109 } // namespace blink | 110 } // namespace blink |
110 | 111 |
111 #endif // OffscreenCanvasRenderingContext2D_h | 112 #endif // OffscreenCanvasRenderingContext2D_h |
OLD | NEW |