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

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

Issue 8041052: Add IsScalingDisabled and PP_PRINTOUTPUTFORMAT_EMF to pepper printing interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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) 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
vandebo (ex-Chrome) 2011/09/26 23:41:33 ditto
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
11 #ifndef GEN_PPAPI_PROXY_PPP_RPC_H_ 11 #ifndef GEN_PPAPI_PROXY_PPP_RPC_H_
12 #define GEN_PPAPI_PROXY_PPP_RPC_H_ 12 #define GEN_PPAPI_PROXY_PPP_RPC_H_
13 13
14 #ifndef __native_client__ 14 #ifndef __native_client__
15 #include "native_client/src/include/portability.h" 15 #include "native_client/src/include/portability.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 void operator=(const PppMouseLockRpcServer); 183 void operator=(const PppMouseLockRpcServer);
184 }; // class PppMouseLockRpcServer 184 }; // class PppMouseLockRpcServer
185 185
186 class PppPrintingRpcServer { 186 class PppPrintingRpcServer {
187 public: 187 public:
188 static void PPP_Printing_QuerySupportedFormats( 188 static void PPP_Printing_QuerySupportedFormats(
189 NaClSrpcRpc* rpc, 189 NaClSrpcRpc* rpc,
190 NaClSrpcClosure* done, 190 NaClSrpcClosure* done,
191 PP_Instance instance, 191 PP_Instance instance,
192 int32_t* formats); 192 int32_t* formats);
193 static void PPP_Printing_IsScalingDisabled(
194 NaClSrpcRpc* rpc,
195 NaClSrpcClosure* done,
196 PP_Instance instance,
197 bool* result);
193 static void PPP_Printing_Begin( 198 static void PPP_Printing_Begin(
194 NaClSrpcRpc* rpc, 199 NaClSrpcRpc* rpc,
195 NaClSrpcClosure* done, 200 NaClSrpcClosure* done,
196 PP_Instance instance, 201 PP_Instance instance,
197 nacl_abi_size_t print_settings_bytes, char* print_settings, 202 nacl_abi_size_t print_settings_bytes, char* print_settings,
198 int32_t* pages_required); 203 int32_t* pages_required);
199 static void PPP_Printing_PrintPages( 204 static void PPP_Printing_PrintPages(
200 NaClSrpcRpc* rpc, 205 NaClSrpcRpc* rpc,
201 NaClSrpcClosure* done, 206 NaClSrpcClosure* done,
202 PP_Instance instance, 207 PP_Instance instance,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 }; // class PppZoomRpcServer 286 }; // class PppZoomRpcServer
282 287
283 class PppRpcs { 288 class PppRpcs {
284 public: 289 public:
285 static NaClSrpcHandlerDesc srpc_methods[]; 290 static NaClSrpcHandlerDesc srpc_methods[];
286 }; // class PppRpcs 291 }; // class PppRpcs
287 292
288 293
289 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_ 294 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_
290 295
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698