Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 /** | |
| 7 * Implementation of the Printing interface. | |
|
yzshen1
2012/06/12 23:14:34
This is not an 'implementation', right?
raymes
2012/06/13 18:23:46
Done.
| |
| 8 */ | |
| 9 | |
| 10 // Note: This version should always match the PPP_Printing_Dev interface. | |
| 11 label Chrome { | |
| 12 M21 = 0.6 | |
| 13 }; | |
| 14 | |
| 15 interface PPB_Printing_Dev { | |
| 16 /** | |
| 17 * Output the default print settings for the default printer into | |
|
yzshen1
2012/06/12 23:14:34
Output -> Outputs.
raymes
2012/06/13 18:23:46
Done.
| |
| 18 * <code>print_settings</code>. Returns <code>PP_FALSE</code> on error. | |
| 19 */ | |
| 20 PP_Bool GetDefaultPrintSettings([in] PP_Instance instance, | |
|
yzshen1
2012/06/12 23:14:34
[Just to make sure you have considered it.]
Is it
raymes
2012/06/13 18:23:46
Yes, Trung wants this to be synchronous for flash.
| |
| 21 [out] PP_PrintSettings_Dev print_settings); | |
| 22 }; | |
| OLD | NEW |