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

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

Issue 4659001: Convert Chrome PPAPI proxy from bool to PP_Bool. (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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
7 7
8 #include "ppapi/c/pp_instance.h" 8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_resource.h" 9 #include "ppapi/c/pp_resource.h"
10 #include "ppapi/c/pp_var.h" 10 #include "ppapi/c/pp_var.h"
(...skipping 23 matching lines...) Expand all
34 virtual void OnMessageReceived(const IPC::Message& msg); 34 virtual void OnMessageReceived(const IPC::Message& msg);
35 35
36 private: 36 private:
37 // Message handlers. 37 // Message handlers.
38 void OnMsgGetWindowObject(PP_Instance instance, 38 void OnMsgGetWindowObject(PP_Instance instance,
39 SerializedVarReturnValue result); 39 SerializedVarReturnValue result);
40 void OnMsgGetOwnerElementObject(PP_Instance instance, 40 void OnMsgGetOwnerElementObject(PP_Instance instance,
41 SerializedVarReturnValue result); 41 SerializedVarReturnValue result);
42 void OnMsgBindGraphics(PP_Instance instance, 42 void OnMsgBindGraphics(PP_Instance instance,
43 PP_Resource device, 43 PP_Resource device,
44 bool* result); 44 PP_Bool* result);
45 void OnMsgIsFullFrame(PP_Instance instance, bool* result); 45 void OnMsgIsFullFrame(PP_Instance instance, PP_Bool* result);
46 void OnMsgExecuteScript(PP_Instance instance, 46 void OnMsgExecuteScript(PP_Instance instance,
47 SerializedVarReceiveInput script, 47 SerializedVarReceiveInput script,
48 SerializedVarOutParam out_exception, 48 SerializedVarOutParam out_exception,
49 SerializedVarReturnValue result); 49 SerializedVarReturnValue result);
50 }; 50 };
51 51
52 } // namespace proxy 52 } // namespace proxy
53 } // namespace pp 53 } // namespace pp
54 54
55 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 55 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698