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

Side by Side Diff: ppapi/proxy/ppb_instance_proxy.h

Issue 4289005: Instance interface implementation. These don't build by themselves, this is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
7
8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_resource.h"
10 #include "ppapi/c/pp_var.h"
11 #include "ppapi/proxy/interface_proxy.h"
12
13 struct PPB_Instance;
14
15 namespace pp {
16 namespace proxy {
17
18 class SerializedVarReceiveInput;
19 class SerializedVarOutParam;
20 class SerializedVarReturnValue;
21
22 class PPB_Instance_Proxy : public InterfaceProxy {
23 public:
24 PPB_Instance_Proxy(Dispatcher* dispatcher, const void* target_interface);
25 virtual ~PPB_Instance_Proxy();
26
27 const PPB_Instance* ppb_instance_target() const {
28 return reinterpret_cast<const PPB_Instance*>(target_interface());
29 }
30
31 // InterfaceProxy implementation.
32 virtual const void* GetSourceInterface() const;
33 virtual InterfaceID GetInterfaceId() const;
34 virtual void OnMessageReceived(const IPC::Message& msg);
35
36 private:
37 // Message handlers.
38 void OnMsgGetWindowObject(PP_Instance instance,
39 SerializedVarReturnValue result);
40 void OnMsgGetOwnerElementObject(PP_Instance instance,
41 SerializedVarReturnValue result);
42 void OnMsgBindGraphics(PP_Instance instance,
43 PP_Resource device,
44 bool* result);
45 void OnMsgIsFullFrame(PP_Instance instance, bool* result);
46 void OnMsgExecuteScript(PP_Instance instance,
47 SerializedVarReceiveInput script,
48 SerializedVarOutParam out_exception,
49 SerializedVarReturnValue result);
50 };
51
52 } // namespace proxy
53 } // namespace pp
54
55 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698