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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 sk_sp<SkImageFilter> stateGetFilter() final; | 77 sk_sp<SkImageFilter> stateGetFilter() final; |
78 void snapshotStateForFilter() final {} | 78 void snapshotStateForFilter() final {} |
79 | 79 |
80 void validateStateStack() const final; | 80 void validateStateStack() const final; |
81 | 81 |
82 bool hasAlpha() const final { return creationAttributes().alpha(); } | 82 bool hasAlpha() const final { return creationAttributes().alpha(); } |
83 bool isContextLost() const override; | 83 bool isContextLost() const override; |
84 | 84 |
85 ImageBitmap* transferToImageBitmap(ScriptState*) final; | 85 ImageBitmap* transferToImageBitmap(ScriptState*) final; |
86 | 86 |
| 87 ExecutionContext* getExecutionContext() final { |
| 88 return m_executionContext.get(); |
| 89 } |
| 90 |
87 protected: | 91 protected: |
88 OffscreenCanvasRenderingContext2D( | 92 OffscreenCanvasRenderingContext2D( |
89 ScriptState*, | 93 ScriptState*, |
90 OffscreenCanvas*, | 94 OffscreenCanvas*, |
91 const CanvasContextCreationAttributes& attrs); | 95 const CanvasContextCreationAttributes& attrs); |
92 DECLARE_VIRTUAL_TRACE(); | 96 DECLARE_VIRTUAL_TRACE(); |
93 | 97 |
94 private: | 98 private: |
95 bool m_needsMatrixClipRestore = false; | 99 bool m_needsMatrixClipRestore = false; |
96 std::unique_ptr<ImageBuffer> m_imageBuffer; | 100 std::unique_ptr<ImageBuffer> m_imageBuffer; |
97 | 101 |
98 bool isPaintable() const final; | 102 bool isPaintable() const final; |
99 | 103 |
100 RefPtr<StaticBitmapImage> transferToStaticBitmapImage(); | 104 RefPtr<StaticBitmapImage> transferToStaticBitmapImage(); |
| 105 |
| 106 Member<ExecutionContext> m_executionContext; |
101 }; | 107 }; |
102 | 108 |
103 DEFINE_TYPE_CASTS(OffscreenCanvasRenderingContext2D, | 109 DEFINE_TYPE_CASTS(OffscreenCanvasRenderingContext2D, |
104 CanvasRenderingContext, | 110 CanvasRenderingContext, |
105 context, | 111 context, |
106 context->is2d() && context->getOffscreenCanvas(), | 112 context->is2d() && context->getOffscreenCanvas(), |
107 context.is2d() && context.getOffscreenCanvas()); | 113 context.is2d() && context.getOffscreenCanvas()); |
108 | 114 |
109 } // namespace blink | 115 } // namespace blink |
110 | 116 |
111 #endif // OffscreenCanvasRenderingContext2D_h | 117 #endif // OffscreenCanvasRenderingContext2D_h |
OLD | NEW |