| Index: ppapi/proxy/ppb_image_data_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_image_data_proxy.cc b/ppapi/proxy/ppb_image_data_proxy.cc
|
| index 6c04fc420d6dec145c64672632eef89172aa4040..43b527624eaec3f96aabf959270a269c3729a2b2 100644
|
| --- a/ppapi/proxy/ppb_image_data_proxy.cc
|
| +++ b/ppapi/proxy/ppb_image_data_proxy.cc
|
| @@ -404,11 +404,11 @@ void PlatformImageData::Unmap() {
|
| // We need to add a method to TransportDIB to release the handles.
|
| }
|
|
|
| -SkCanvas* PlatformImageData::GetPlatformCanvas() {
|
| +CdlCanvas* PlatformImageData::GetPlatformCanvas() {
|
| return mapped_canvas_.get();
|
| }
|
|
|
| -SkCanvas* PlatformImageData::GetCanvas() {
|
| +CdlCanvas* PlatformImageData::GetCanvas() {
|
| return mapped_canvas_.get();
|
| }
|
|
|
| @@ -443,11 +443,11 @@ void SimpleImageData::Unmap() {
|
| shm_.Unmap();
|
| }
|
|
|
| -SkCanvas* SimpleImageData::GetPlatformCanvas() {
|
| +CdlCanvas* SimpleImageData::GetPlatformCanvas() {
|
| return NULL; // No canvas available.
|
| }
|
|
|
| -SkCanvas* SimpleImageData::GetCanvas() {
|
| +CdlCanvas* SimpleImageData::GetCanvas() {
|
| return NULL; // No canvas available.
|
| }
|
|
|
|
|