Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1040)

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h

Issue 9814015: Add new MouseCursor interface for setting the mouse cursor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h b/ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
index 288455f2e19923a346dd06d7458f9624f03d959a..a54103b8af7964e879b25ea4ebc47656f6da140e 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
+++ b/ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
@@ -153,38 +153,6 @@ class PpbCoreRpcClient {
void operator=(const PpbCoreRpcClient);
}; // class PpbCoreRpcClient
-class PpbCursorControlRpcClient {
- public:
- static NaClSrpcError PPB_CursorControl_SetCursor(
- NaClSrpcChannel* channel,
- PP_Instance instance,
- int32_t type,
- PP_Resource custom_image,
- nacl_abi_size_t hot_spot_bytes, char* hot_spot,
- int32_t* success);
- static NaClSrpcError PPB_CursorControl_LockCursor(
- NaClSrpcChannel* channel,
- PP_Instance instance,
- int32_t* success);
- static NaClSrpcError PPB_CursorControl_UnlockCursor(
- NaClSrpcChannel* channel,
- PP_Instance instance,
- int32_t* success);
- static NaClSrpcError PPB_CursorControl_HasCursorLock(
- NaClSrpcChannel* channel,
- PP_Instance instance,
- int32_t* success);
- static NaClSrpcError PPB_CursorControl_CanLockCursor(
- NaClSrpcChannel* channel,
- PP_Instance instance,
- int32_t* success);
-
- private:
- PpbCursorControlRpcClient();
- PpbCursorControlRpcClient(const PpbCursorControlRpcClient&);
- void operator=(const PpbCursorControlRpcClient);
-}; // class PpbCursorControlRpcClient
-
class PpbFileIORpcClient {
public:
static NaClSrpcError PPB_FileIO_Create(
@@ -741,6 +709,22 @@ class PpbMessagingRpcClient {
void operator=(const PpbMessagingRpcClient);
}; // class PpbMessagingRpcClient
+class PpbMouseCursorRpcClient {
+ public:
+ static NaClSrpcError PPB_MouseCursor_SetCursor(
+ NaClSrpcChannel* channel,
+ PP_Instance instance,
+ int32_t type,
+ PP_Resource custom_image,
+ nacl_abi_size_t hot_spot_bytes, char* hot_spot,
+ int32_t* success);
+
+ private:
+ PpbMouseCursorRpcClient();
+ PpbMouseCursorRpcClient(const PpbMouseCursorRpcClient&);
+ void operator=(const PpbMouseCursorRpcClient);
+}; // class PpbMouseCursorRpcClient
+
class PpbMouseLockRpcClient {
public:
static NaClSrpcError PPB_MouseLock_LockMouse(

Powered by Google App Engine
This is Rietveld 408576698