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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/ppp_printing.srpc

Issue 8041052: Add IsScalingDisabled and PP_PRINTOUTPUTFORMAT_EMF to pepper printing interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments 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 Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client 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 # RPC methods used to implement PPP_Printing calls to the plugin. 5 # RPC methods used to implement PPP_Printing calls to the plugin.
6 # See ppapi/c/dev/ppp_printing_dev.h for interface details. 6 # See ppapi/c/dev/ppp_printing_dev.h for interface details.
7 { 7 {
8 'name': 'PppPrintingRpc', 8 'name': 'PppPrintingRpc',
9 'rpcs': [ 9 'rpcs': [
10 {'name': 'PPP_Printing_QuerySupportedFormats', 10 {'name': 'PPP_Printing_QuerySupportedFormats',
(...skipping 16 matching lines...) Expand all
27 ], 27 ],
28 'outputs': [['image_data', 'PP_Resource'], 28 'outputs': [['image_data', 'PP_Resource'],
29 ] 29 ]
30 }, 30 },
31 {'name': 'PPP_Printing_End', 31 {'name': 'PPP_Printing_End',
32 'inputs': [['instance', 'PP_Instance'], 32 'inputs': [['instance', 'PP_Instance'],
33 ], 33 ],
34 'outputs': [ 34 'outputs': [
35 ] 35 ]
36 }, 36 },
37 {'name': 'PPP_Printing_IsScalingDisabled',
38 'inputs': [['instance', 'PP_Instance'],
39 ],
40 'outputs': [['result', 'int32_t'], # PP_Bool
41 ]
42 },
37 ] 43 ]
38 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698