| Index: base/gfx/bitmap_platform_device_linux.cc
|
| diff --git a/base/gfx/bitmap_platform_device_linux.cc b/base/gfx/bitmap_platform_device_linux.cc
|
| index 1211a1536d5bb74004c73748f7e3bdffc5c8bb8a..3cb6683874d62d82acb5cd6a07e974f02fc1a913 100644
|
| --- a/base/gfx/bitmap_platform_device_linux.cc
|
| +++ b/base/gfx/bitmap_platform_device_linux.cc
|
| @@ -38,6 +38,12 @@ BitmapPlatformDeviceLinux::BitmapPlatformDeviceLinux(const SkBitmap& bitmap)
|
| : PlatformDeviceLinux(bitmap) {
|
| }
|
|
|
| +BitmapPlatformDeviceLinux::BitmapPlatformDeviceLinux(
|
| + const BitmapPlatformDeviceLinux& other)
|
| + : PlatformDeviceLinux(
|
| + const_cast<BitmapPlatformDeviceLinux&>(other).accessBitmap(true)) {
|
| +}
|
| +
|
| BitmapPlatformDeviceLinux::~BitmapPlatformDeviceLinux() {
|
| }
|
|
|
|
|