diff options
Diffstat (limited to 'remoting/client/plugin/pepper_view_proxy.cc')
-rw-r--r-- | remoting/client/plugin/pepper_view_proxy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/client/plugin/pepper_view_proxy.cc b/remoting/client/plugin/pepper_view_proxy.cc index 5f523a1..ad4557d 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( |