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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/trusted/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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 PppMouseLockRpcClient(const PppMouseLockRpcClient&); 166 PppMouseLockRpcClient(const PppMouseLockRpcClient&);
167 void operator=(const PppMouseLockRpcClient); 167 void operator=(const PppMouseLockRpcClient);
168 }; // class PppMouseLockRpcClient 168 }; // class PppMouseLockRpcClient
169 169
170 class PppPrintingRpcClient { 170 class PppPrintingRpcClient {
171 public: 171 public:
172 static NaClSrpcError PPP_Printing_QuerySupportedFormats( 172 static NaClSrpcError PPP_Printing_QuerySupportedFormats(
173 NaClSrpcChannel* channel, 173 NaClSrpcChannel* channel,
174 PP_Instance instance, 174 PP_Instance instance,
175 int32_t* formats); 175 int32_t* formats);
176 static NaClSrpcError PPP_Printing_IsScalingDisabled(
177 NaClSrpcChannel* channel,
178 PP_Instance instance,
179 bool* result);
176 static NaClSrpcError PPP_Printing_Begin( 180 static NaClSrpcError PPP_Printing_Begin(
177 NaClSrpcChannel* channel, 181 NaClSrpcChannel* channel,
178 PP_Instance instance, 182 PP_Instance instance,
179 nacl_abi_size_t print_settings_bytes, char* print_settings, 183 nacl_abi_size_t print_settings_bytes, char* print_settings,
180 int32_t* pages_required); 184 int32_t* pages_required);
181 static NaClSrpcError PPP_Printing_PrintPages( 185 static NaClSrpcError PPP_Printing_PrintPages(
182 NaClSrpcChannel* channel, 186 NaClSrpcChannel* channel,
183 PP_Instance instance, 187 PP_Instance instance,
184 nacl_abi_size_t page_ranges_bytes, char* page_ranges, 188 nacl_abi_size_t page_ranges_bytes, char* page_ranges,
185 int32_t page_range_count, 189 int32_t page_range_count,
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 PppZoomRpcClient(); 257 PppZoomRpcClient();
254 PppZoomRpcClient(const PppZoomRpcClient&); 258 PppZoomRpcClient(const PppZoomRpcClient&);
255 void operator=(const PppZoomRpcClient); 259 void operator=(const PppZoomRpcClient);
256 }; // class PppZoomRpcClient 260 }; // class PppZoomRpcClient
257 261
258 262
259 263
260 264
261 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_ 265 #endif // GEN_PPAPI_PROXY_PPP_RPC_H_
262 266
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698