Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp

Issue 1974143002: Revert of Generate separate files for union type containers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/offscreencanvas2d/OffscreenCanvasRenderingContext2D.h" 5 #include "modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.h"
6 6
7 #include "bindings/modules/v8/OffscreenCanvasRenderingContext2DOrWebGLRenderingC ontextOrWebGL2RenderingContext.h" 7 #include "bindings/modules/v8/UnionTypesModules.h"
8 #include "core/frame/ImageBitmap.h" 8 #include "core/frame/ImageBitmap.h"
9 #include "platform/graphics/ImageBuffer.h" 9 #include "platform/graphics/ImageBuffer.h"
10 #include "platform/graphics/StaticBitmapImage.h" 10 #include "platform/graphics/StaticBitmapImage.h"
11 #include "wtf/Assertions.h" 11 #include "wtf/Assertions.h"
12 12
13 #define UNIMPLEMENTED ASSERT_NOT_REACHED 13 #define UNIMPLEMENTED ASSERT_NOT_REACHED
14 14
15 namespace blink { 15 namespace blink {
16 16
17 OffscreenCanvasRenderingContext2D::~OffscreenCanvasRenderingContext2D() 17 OffscreenCanvasRenderingContext2D::~OffscreenCanvasRenderingContext2D()
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 } 152 }
153 #endif 153 #endif
154 } 154 }
155 155
156 bool OffscreenCanvasRenderingContext2D::isContextLost() const 156 bool OffscreenCanvasRenderingContext2D::isContextLost() const
157 { 157 {
158 return false; 158 return false;
159 } 159 }
160 160
161 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698