| Index: remoting/client/plugin/pepper_view_proxy.cc
|
| diff --git a/remoting/client/plugin/pepper_view_proxy.cc b/remoting/client/plugin/pepper_view_proxy.cc
|
| index 5f523a1336b5f199cd5bae4263be28e8d464a88a..ad4557ddb1442d9ec784391e5cebf2438b718543 100644
|
| --- a/remoting/client/plugin/pepper_view_proxy.cc
|
| +++ b/remoting/client/plugin/pepper_view_proxy.cc
|
| @@ -103,14 +103,14 @@ void PepperViewProxy::SetViewport(int x, int y, int width, int height) {
|
| view_->SetViewport(x, y, width, height);
|
| }
|
|
|
| -gfx::Point PepperViewProxy::ConvertScreenToHost(const gfx::Point& p) const {
|
| +pp::Point PepperViewProxy::ConvertScreenToHost(const pp::Point& p) const {
|
| // This method returns a value, so must run synchronously, so must be
|
| // called only on the pepper thread.
|
| DCHECK(CurrentlyOnPluginThread());
|
|
|
| if (view_)
|
| return view_->ConvertScreenToHost(p);
|
| - return gfx::Point();
|
| + return pp::Point();
|
| }
|
|
|
| void PepperViewProxy::AllocateFrame(
|
|
|