| Index: ppapi/proxy/ppb_cursor_control_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_cursor_control_proxy.cc b/ppapi/proxy/ppb_cursor_control_proxy.cc
|
| index cef77f2241f8e37f39e90181803202a7dd746687..5366ea080a38790cb7d5cf36fe400eff65dbd85c 100644
|
| --- a/ppapi/proxy/ppb_cursor_control_proxy.cc
|
| +++ b/ppapi/proxy/ppb_cursor_control_proxy.cc
|
| @@ -12,12 +12,10 @@
|
| #include "ppapi/thunk/enter.h"
|
| #include "ppapi/thunk/thunk.h"
|
|
|
| -using ppapi::HostResource;
|
| -using ppapi::Resource;
|
| using ppapi::thunk::EnterFunctionNoLock;
|
| using ppapi::thunk::PPB_CursorControl_FunctionAPI;
|
|
|
| -namespace pp {
|
| +namespace ppapi {
|
| namespace proxy {
|
|
|
| namespace {
|
| @@ -40,7 +38,7 @@ PPB_CursorControl_Proxy::~PPB_CursorControl_Proxy() {
|
| // static
|
| const InterfaceProxy::Info* PPB_CursorControl_Proxy::GetInfo() {
|
| static const Info info = {
|
| - ppapi::thunk::GetPPB_CursorControl_Thunk(),
|
| + thunk::GetPPB_CursorControl_Thunk(),
|
| PPB_CURSOR_CONTROL_DEV_INTERFACE,
|
| INTERFACE_ID_PPB_CURSORCONTROL,
|
| false,
|
| @@ -169,4 +167,4 @@ void PPB_CursorControl_Proxy::OnMsgCanLockCursor(PP_Instance instance,
|
| }
|
|
|
| } // namespace proxy
|
| -} // namespace pp
|
| +} // namespace ppapi
|
|
|