| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CanvasRenderingContext2DOffScreenCanvas_h |
| 6 #define CanvasRenderingContext2DOffScreenCanvas_h |
| 7 |
| 8 #include "bindings/modules/v8/UnionTypesModules.h" |
| 9 #include "wtf/Allocator.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class CanvasRenderingContext2D; |
| 14 |
| 15 class CanvasRenderingContext2DOffScreenCanvas { |
| 16 STATIC_ONLY(CanvasRenderingContext2DOffScreenCanvas); |
| 17 public: |
| 18 static void canvas(CanvasRenderingContext2D&, HTMLCanvasElementOrOffScreenCa
nvas&); |
| 19 }; |
| 20 |
| 21 } // namespace blink |
| 22 |
| 23 #endif // CanvasRenderingContext2DOffScreenCanvas_h |
| OLD | NEW |