| Index: chrome/common/print_messages.h
|
| diff --git a/chrome/common/print_messages.h b/chrome/common/print_messages.h
|
| index dca63c3bcfe1368635bea16a8fe837bebfc64d22..9f2bac3d141e1e3d1a7fe2ec24b8a8ba397f34fc 100644
|
| --- a/chrome/common/print_messages.h
|
| +++ b/chrome/common/print_messages.h
|
| @@ -370,15 +370,16 @@ IPC_SYNC_MESSAGE_ROUTED1_1(PrintHostMsg_ScriptedPrint,
|
| PrintMsg_PrintPages_Params
|
| /* settings chosen by the user*/)
|
|
|
| -#if defined(USE_X11)
|
| +#if defined(USE_X11) || defined(OS_ANDROID)
|
| // Asks the browser to create a temporary file for the renderer to fill
|
| // in resulting NativeMetafile in printing.
|
| -IPC_SYNC_MESSAGE_CONTROL0_2(PrintHostMsg_AllocateTempFileForPrinting,
|
| +IPC_SYNC_MESSAGE_CONTROL1_2(PrintHostMsg_AllocateTempFileForPrinting,
|
| + int /* render_view_id */, // Used only by Android.
|
| base::FileDescriptor /* temp file fd */,
|
| - int /* fd in browser*/)
|
| + int /* fd in browser*/) // Used only by Chrome OS.
|
| IPC_MESSAGE_CONTROL2(PrintHostMsg_TempFileForPrintingWritten,
|
| int /* render_view_id */,
|
| - int /* fd in browser */)
|
| + int /* fd in browser */) // Used only by Chrome OS.
|
| #endif
|
|
|
| // Asks the browser to do print preview.
|
|
|