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

Unified Diff: chrome/common/print_messages.h

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Added SK_API to vector platform device skia Created 9 years, 4 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
Index: chrome/common/print_messages.h
diff --git a/chrome/common/print_messages.h b/chrome/common/print_messages.h
index 36444289875f418cdb16feced7158cf6f5ad7130..8f3d9509fae6b68087dcb29e98eb483e18c25619 100644
--- a/chrome/common/print_messages.h
+++ b/chrome/common/print_messages.h
@@ -54,6 +54,18 @@ IPC_STRUCT_BEGIN(PrintMsg_Print_Params)
// True if this is the first preview request, used only for print preview.
IPC_STRUCT_MEMBER(bool, is_first_request)
+
+ // Specifies if the header and footer should be rendered.
+ IPC_STRUCT_MEMBER(bool, display_header_footer)
+
+ // Date string to be printed as header if requested by the user.
+ IPC_STRUCT_MEMBER(string16, date)
+
+ // Title string to be printed as header if requested by the user.
+ IPC_STRUCT_MEMBER(string16, title)
+
+ // URL string to be printed as footer if requested by the user.
+ IPC_STRUCT_MEMBER(string16, url)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(PrintMsg_PrintPage_Params)

Powered by Google App Engine
This is Rietveld 408576698