| Index: remoting/client/frame_consumer_proxy.cc | 
| diff --git a/remoting/client/frame_consumer_proxy.cc b/remoting/client/frame_consumer_proxy.cc | 
| index 6f56c22232cc339d2215ea3b21b188dd278f163c..510654cb970c32c58b6d9e6d2fdf2b9258a95db5 100644 | 
| --- a/remoting/client/frame_consumer_proxy.cc | 
| +++ b/remoting/client/frame_consumer_proxy.cc | 
| @@ -7,7 +7,7 @@ | 
| #include "base/bind.h" | 
| #include "base/location.h" | 
| #include "base/single_thread_task_runner.h" | 
| -#include "ppapi/cpp/image_data.h" | 
| +#include "remoting/client/image_buffer.h" | 
|  | 
| namespace remoting { | 
|  | 
| @@ -18,7 +18,7 @@ FrameConsumerProxy::FrameConsumerProxy( | 
|  | 
| void FrameConsumerProxy::ApplyBuffer(const SkISize& view_size, | 
| const SkIRect& clip_area, | 
| -                                     pp::ImageData* buffer, | 
| +                                     ImageBuffer* buffer, | 
| const SkRegion& region) { | 
| if (!task_runner_->BelongsToCurrentThread()) { | 
| task_runner_->PostTask(FROM_HERE, base::Bind( | 
| @@ -31,7 +31,7 @@ void FrameConsumerProxy::ApplyBuffer(const SkISize& view_size, | 
| frame_consumer_->ApplyBuffer(view_size, clip_area, buffer, region); | 
| } | 
|  | 
| -void FrameConsumerProxy::ReturnBuffer(pp::ImageData* buffer) { | 
| +void FrameConsumerProxy::ReturnBuffer(ImageBuffer* buffer) { | 
| if (!task_runner_->BelongsToCurrentThread()) { | 
| task_runner_->PostTask(FROM_HERE, base::Bind( | 
| &FrameConsumerProxy::ReturnBuffer, this, buffer)); | 
|  |