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 #include "modules/canvas/HTMLCanvasElementModule.h" | 5 #include "modules/canvas/HTMLCanvasElementModule.h" |
6 | 6 |
7 #include "core/html/canvas/CanvasContextCreationAttributes.h" | 7 #include "core/html/canvas/CanvasContextCreationAttributes.h" |
8 #include "core/html/canvas/CanvasRenderingContext.h" | 8 #include "core/html/canvas/CanvasRenderingContext.h" |
9 | 9 |
10 namespace blink { | 10 namespace blink { |
11 | 11 |
12 void HTMLCanvasElementModule::getContext(HTMLCanvasElement& canvas, const String
& type, const CanvasContextCreationAttributes& attributes, RenderingContext& res
ult) | 12 void HTMLCanvasElementModule::getContext(HTMLCanvasElement& canvas, const String
& type, const CanvasContextCreationAttributes& attributes, RenderingContext& res
ult) |
13 { | 13 { |
14 CanvasRenderingContext* context = canvas.getCanvasRenderingContext(type, att
ributes); | 14 CanvasRenderingContext* context = canvas.getCanvasRenderingContext(type, att
ributes); |
15 if (context) { | 15 if (context) { |
16 context->setCanvasGetContextResult(result); | 16 context->setCanvasGetContextResult(result); |
17 } | 17 } |
18 } | 18 } |
19 | 19 |
| 20 OffscreenCanvas* HTMLCanvasElementModule::transferControlToOffscreen(HTMLCanvasE
lement& canvas, ExceptionState& exceptionState) |
| 21 { |
| 22 if (canvas.renderingContext()) { |
| 23 exceptionState.throwDOMException(InvalidStateError, "Cannot transfer con
trol from a canvas that has a rendering context."); |
| 24 return nullptr; |
| 25 } |
| 26 OffscreenCanvas* offscreenCanvas = OffscreenCanvas::create(canvas.width(), c
anvas.height()); |
| 27 offscreenCanvas->setAssociatedCanvas(&canvas); |
| 28 return offscreenCanvas; |
20 } | 29 } |
| 30 |
| 31 } |
OLD | NEW |