summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_cursor_control_proxy.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-11 21:37:16 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-11 21:37:16 +0000
commit54796ef102081ee2f1b23301c467e789c694d26b (patch)
tree11eccc5138263847d0249451f722d4d7860528d6 /ppapi/proxy/ppb_cursor_control_proxy.h
parent933d320d6e4366547dc7abffb32fa2d06a1ae7d4 (diff)
downloadchromium_src-54796ef102081ee2f1b23301c467e789c694d26b.zip
chromium_src-54796ef102081ee2f1b23301c467e789c694d26b.tar.gz
chromium_src-54796ef102081ee2f1b23301c467e789c694d26b.tar.bz2
Add implementations for Fullscreen and CursorControl interfaces.
TEST=none BUG=none Review URL: http://codereview.chromium.org/4809002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_cursor_control_proxy.h')
-rw-r--r--ppapi/proxy/ppb_cursor_control_proxy.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/ppapi/proxy/ppb_cursor_control_proxy.h b/ppapi/proxy/ppb_cursor_control_proxy.h
new file mode 100644
index 0000000..f540c0a
--- /dev/null
+++ b/ppapi/proxy/ppb_cursor_control_proxy.h
@@ -0,0 +1,54 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_PPB_CURSOR_CONTROL_PROXY_H_
+#define PPAPI_PPB_CURSOR_CONTROL_PROXY_H_
+
+#include "ppapi/c/pp_completion_callback.h"
+#include "ppapi/c/pp_bool.h"
+#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_point.h"
+#include "ppapi/c/pp_resource.h"
+#include "ppapi/proxy/interface_proxy.h"
+
+struct PPB_CursorControl_Dev;
+
+namespace pp {
+namespace proxy {
+
+class PPB_CursorControl_Proxy : public InterfaceProxy {
+ public:
+ PPB_CursorControl_Proxy(Dispatcher* dispatcher, const void* target_interface);
+ virtual ~PPB_CursorControl_Proxy();
+
+ const PPB_CursorControl_Dev* ppb_cursor_control_target() const {
+ return reinterpret_cast<const PPB_CursorControl_Dev*>(target_interface());
+ }
+
+ // InterfaceProxy implementation.
+ virtual const void* GetSourceInterface() const;
+ virtual InterfaceID GetInterfaceId() const;
+ virtual void OnMessageReceived(const IPC::Message& msg);
+
+ private:
+ // Message handlers.
+ void OnMsgSetCursor(PP_Instance instance,
+ int32_t type,
+ PP_Resource custom_image,
+ const PP_Point& hot_spot,
+ PP_Bool* result);
+ void OnMsgLockCursor(PP_Instance instance,
+ PP_Bool* result);
+ void OnMsgUnlockCursor(PP_Instance instance,
+ PP_Bool* result);
+ void OnMsgHasCursorLock(PP_Instance instance,
+ PP_Bool* result);
+ void OnMsgCanLockCursor(PP_Instance instance,
+ PP_Bool* result);
+};
+
+} // namespace proxy
+} // namespace pp
+
+#endif // PPAPI_PPB_CURSOR_CONTROL_PROXY_H_