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

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

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 NaClSrpcClosure* done, 224 NaClSrpcClosure* done,
225 PP_Instance instance, 225 PP_Instance instance,
226 int32_t* result); 226 int32_t* result);
227 227
228 private: 228 private:
229 PppPrintingRpcServer(); 229 PppPrintingRpcServer();
230 PppPrintingRpcServer(const PppPrintingRpcServer&); 230 PppPrintingRpcServer(const PppPrintingRpcServer&);
231 void operator=(const PppPrintingRpcServer); 231 void operator=(const PppPrintingRpcServer);
232 }; // class PppPrintingRpcServer 232 }; // class PppPrintingRpcServer
233 233
234 class PppScrollbarRpcServer {
235 public:
236 static void PPP_Scrollbar_ValueChanged(
237 NaClSrpcRpc* rpc,
238 NaClSrpcClosure* done,
239 PP_Instance instance,
240 PP_Resource scrollbar,
241 int32_t value);
242 static void PPP_Scrollbar_OverlayChanged(
243 NaClSrpcRpc* rpc,
244 NaClSrpcClosure* done,
245 PP_Instance instance,
246 PP_Resource scrollbar,
247 int32_t overlay);
248
249 private:
250 PppScrollbarRpcServer();
251 PppScrollbarRpcServer(const PppScrollbarRpcServer&);
252 void operator=(const PppScrollbarRpcServer);
253 }; // class PppScrollbarRpcServer
254
255 class PppSelectionRpcServer { 234 class PppSelectionRpcServer {
256 public: 235 public:
257 static void PPP_Selection_GetSelectedText( 236 static void PPP_Selection_GetSelectedText(
258 NaClSrpcRpc* rpc, 237 NaClSrpcRpc* rpc,
259 NaClSrpcClosure* done, 238 NaClSrpcClosure* done,
260 PP_Instance instance, 239 PP_Instance instance,
261 int32_t html, 240 int32_t html,
262 nacl_abi_size_t* selected_text_bytes, char* selected_text); 241 nacl_abi_size_t* selected_text_bytes, char* selected_text);
263 242
264 private: 243 private:
265 PppSelectionRpcServer(); 244 PppSelectionRpcServer();
266 PppSelectionRpcServer(const PppSelectionRpcServer&); 245 PppSelectionRpcServer(const PppSelectionRpcServer&);
267 void operator=(const PppSelectionRpcServer); 246 void operator=(const PppSelectionRpcServer);
268 }; // class PppSelectionRpcServer 247 }; // class PppSelectionRpcServer
269 248
270 class PppWidgetRpcServer {
271 public:
272 static void PPP_Widget_Invalidate(
273 NaClSrpcRpc* rpc,
274 NaClSrpcClosure* done,
275 PP_Instance instance,
276 PP_Resource widget,
277 nacl_abi_size_t dirty_rect_bytes, char* dirty_rect);
278
279 private:
280 PppWidgetRpcServer();
281 PppWidgetRpcServer(const PppWidgetRpcServer&);
282 void operator=(const PppWidgetRpcServer);
283 }; // class PppWidgetRpcServer
284
285 class PppZoomRpcServer { 249 class PppZoomRpcServer {
286 public: 250 public:
287 static void PPP_Zoom_Zoom( 251 static void PPP_Zoom_Zoom(
288 NaClSrpcRpc* rpc, 252 NaClSrpcRpc* rpc,
289 NaClSrpcClosure* done, 253 NaClSrpcClosure* done,
290 PP_Instance instance, 254 PP_Instance instance,
291 double factor, 255 double factor,
292 int32_t text_only); 256 int32_t text_only);
293 257
294 private: 258 private:
295 PppZoomRpcServer(); 259 PppZoomRpcServer();
296 PppZoomRpcServer(const PppZoomRpcServer&); 260 PppZoomRpcServer(const PppZoomRpcServer&);
297 void operator=(const PppZoomRpcServer); 261 void operator=(const PppZoomRpcServer);
298 }; // class PppZoomRpcServer 262 }; // class PppZoomRpcServer
299 263
300 class PppRpcs { 264 class PppRpcs {
301 public: 265 public:
302 static NaClSrpcHandlerDesc srpc_methods[]; 266 static NaClSrpcHandlerDesc srpc_methods[];
303 }; // class PppRpcs 267 }; // class PppRpcs
304 268
305 269
306 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_ 270 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_
307 271
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698