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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppp_rpc.h

Issue 8951014: Change the DidChangeView update to take a new ViewChanged resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New patch Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 5 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
6 // 6 //
7 // Automatically generated code. See srpcgen.py 7 // Automatically generated code. See srpcgen.py
8 // 8 //
9 // NaCl Simple Remote Procedure Call interface abstractions. 9 // NaCl Simple Remote Procedure Call interface abstractions.
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 int32_t argc, 117 int32_t argc,
118 nacl_abi_size_t argn_bytes, char* argn, 118 nacl_abi_size_t argn_bytes, char* argn,
119 nacl_abi_size_t argv_bytes, char* argv, 119 nacl_abi_size_t argv_bytes, char* argv,
120 int32_t* success); 120 int32_t* success);
121 static NaClSrpcError PPP_Instance_DidDestroy( 121 static NaClSrpcError PPP_Instance_DidDestroy(
122 NaClSrpcChannel* channel, 122 NaClSrpcChannel* channel,
123 PP_Instance instance); 123 PP_Instance instance);
124 static NaClSrpcError PPP_Instance_DidChangeView( 124 static NaClSrpcError PPP_Instance_DidChangeView(
125 NaClSrpcChannel* channel, 125 NaClSrpcChannel* channel,
126 PP_Instance instance, 126 PP_Instance instance,
127 nacl_abi_size_t position_bytes, int32_t* position, 127 PP_Resource resource,
128 nacl_abi_size_t clip_bytes, int32_t* clip, 128 nacl_abi_size_t view_data_bytes, char* view_data);
129 int32_t is_fullscreen);
130 static NaClSrpcError PPP_Instance_DidChangeFocus( 129 static NaClSrpcError PPP_Instance_DidChangeFocus(
131 NaClSrpcChannel* channel, 130 NaClSrpcChannel* channel,
132 PP_Instance instance, 131 PP_Instance instance,
133 bool has_focus); 132 bool has_focus);
134 static NaClSrpcError PPP_Instance_HandleDocumentLoad( 133 static NaClSrpcError PPP_Instance_HandleDocumentLoad(
135 NaClSrpcChannel* channel, 134 NaClSrpcChannel* channel,
136 PP_Instance instance, 135 PP_Instance instance,
137 PP_Resource url_loader, 136 PP_Resource url_loader,
138 int32_t* success); 137 int32_t* success);
139 138
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 PppZoomRpcClient(); 257 PppZoomRpcClient();
259 PppZoomRpcClient(const PppZoomRpcClient&); 258 PppZoomRpcClient(const PppZoomRpcClient&);
260 void operator=(const PppZoomRpcClient); 259 void operator=(const PppZoomRpcClient);
261 }; // class PppZoomRpcClient 260 }; // class PppZoomRpcClient
262 261
263 262
264 263
265 264
266 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_ 265 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_
267 266
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698