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

Unified Diff: chrome/common/print_messages.h

Issue 12177009: Printing selection from context menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/print_preview/print_preview_ui_unittest.cc ('k') | chrome/common/print_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/print_messages.h
diff --git a/chrome/common/print_messages.h b/chrome/common/print_messages.h
index 8a79ebcf6070bcac19fdaa5eb1f2fb25bf2e6155..0b04f71bbe21074a28bc639ba50cf7a2ce5a6235 100644
--- a/chrome/common/print_messages.h
+++ b/chrome/common/print_messages.h
@@ -62,6 +62,15 @@ struct PrintMsg_PrintPages_Params {
std::vector<int> pages;
};
+struct PrintHostMsg_RequestPrintPreview_Params {
+ PrintHostMsg_RequestPrintPreview_Params();
+ ~PrintHostMsg_RequestPrintPreview_Params();
+ bool is_modifiable;
+ bool webnode_only;
+ bool has_selection;
+ bool selection_only;
+};
+
#endif // CHROME_COMMON_PRINT_MESSAGES_H_
#define IPC_MESSAGE_START PrintMsgStart
@@ -151,6 +160,13 @@ IPC_STRUCT_BEGIN(PrintMsg_PrintPage_Params)
IPC_STRUCT_MEMBER(int, page_number)
IPC_STRUCT_END()
+IPC_STRUCT_TRAITS_BEGIN(PrintHostMsg_RequestPrintPreview_Params)
+ IPC_STRUCT_TRAITS_MEMBER(is_modifiable)
+ IPC_STRUCT_TRAITS_MEMBER(webnode_only)
+ IPC_STRUCT_TRAITS_MEMBER(has_selection)
+ IPC_STRUCT_TRAITS_MEMBER(selection_only)
+IPC_STRUCT_TRAITS_END()
+
IPC_STRUCT_TRAITS_BEGIN(printing::PageSizeMargins)
IPC_STRUCT_TRAITS_MEMBER(content_width)
IPC_STRUCT_TRAITS_MEMBER(content_height)
@@ -265,7 +281,7 @@ IPC_STRUCT_END()
// Messages sent from the browser to the renderer.
// Tells the render view to initiate print preview for the entire document.
-IPC_MESSAGE_ROUTED0(PrintMsg_InitiatePrintPreview)
+IPC_MESSAGE_ROUTED1(PrintMsg_InitiatePrintPreview, bool /* selection_only */)
// Tells the render view to initiate printing or print preview for a particular
// node, depending on which mode the render view is in.
@@ -362,14 +378,8 @@ IPC_MESSAGE_CONTROL2(PrintHostMsg_TempFileForPrintingWritten,
#endif
// Asks the browser to do print preview.
-// |is_modifiable| is set to true when the request is for a web page, and false
-// for a PDF.
-// |webnode_only| is set to true if the document being printed is a specific
-// WebNode, and false if the document is a full WebFrame.
-IPC_MESSAGE_ROUTED3(PrintHostMsg_RequestPrintPreview,
- bool /* is_modifiable */,
- bool /* webnode_only */,
- bool /* has_selection */)
+IPC_MESSAGE_ROUTED1(PrintHostMsg_RequestPrintPreview,
+ PrintHostMsg_RequestPrintPreview_Params /* params */)
// Notify the browser the number of pages in the print preview document.
IPC_MESSAGE_ROUTED1(PrintHostMsg_DidGetPreviewPageCount,
« no previous file with comments | « chrome/browser/ui/webui/print_preview/print_preview_ui_unittest.cc ('k') | chrome/common/print_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698