| Index: skia/ext/bitmap_platform_device_linux.cc
|
| diff --git a/skia/ext/bitmap_platform_device_linux.cc b/skia/ext/bitmap_platform_device_linux.cc
|
| index 69f805801ac8b85da8614514d62bc4c281984256..60feb453d56a3865ff96f96588752ae4db15441f 100644
|
| --- a/skia/ext/bitmap_platform_device_linux.cc
|
| +++ b/skia/ext/bitmap_platform_device_linux.cc
|
| @@ -142,6 +142,14 @@ BitmapPlatformDevice::BitmapPlatformDevice(
|
| BitmapPlatformDevice::~BitmapPlatformDevice() {
|
| }
|
|
|
| +SkDeviceFactory* BitmapPlatformDevice::getDeviceFactory() {
|
| + return SkNEW(BitmapPlatformDeviceFactory);
|
| +}
|
| +
|
| +bool BitmapPlatformDevice::IsVectorial() {
|
| + return false;
|
| +}
|
| +
|
| cairo_t* BitmapPlatformDevice::beginPlatformPaint() {
|
| data_->LoadConfig();
|
| cairo_t* cairo = data_->bitmap_context();
|
|
|