Index: third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp |
diff --git a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp |
index 0636218ea926fe28053b62cf0bac31bb29910521..420b1b26c2080471aa78f55296180836b5662dd4 100644 |
--- a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp |
+++ b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp |
@@ -255,6 +255,18 @@ bool OffscreenCanvasRenderingContext2D::IsPaintable() const { |
return this->GetImageBuffer(); |
} |
+CanvasColorSpace OffscreenCanvasRenderingContext2D::ColorSpace() const { |
+ return CanvasRenderingContext::ColorSpace(); |
+} |
+ |
+String OffscreenCanvasRenderingContext2D::ColorSpaceAsString() const { |
+ return CanvasRenderingContext::ColorSpaceAsString(); |
+} |
+ |
+CanvasPixelFormat OffscreenCanvasRenderingContext2D::PixelFormat() const { |
+ return CanvasRenderingContext::PixelFormat(); |
+} |
+ |
bool OffscreenCanvasRenderingContext2D::IsAccelerated() const { |
return image_buffer_ && image_buffer_->IsAccelerated(); |
} |