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

Unified Diff: content/common/frame_messages.h

Issue 2653963002: [Experimental] Supporting OOPIF printing
Patch Set: Rename service, fix for webview, and connect to DiscardableMemoryManager Created 3 years, 9 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 | « content/browser/utility_process_host_impl.cc ('k') | content/public/app/mojo/content_utility_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 302538e1a616576e1ee979a39b7be9d6b0efffca..f9e9e9a8677697dccb2e472f8baea27a21d8bc7e 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -948,6 +948,10 @@ IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture)
IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse,
std::vector<content::FileChooserFileInfo>)
+IPC_MESSAGE_ROUTED2(FrameMsg_PrintFrame,
+ gfx::Rect, /* print area */
+ int /* root frame id */)
+
// -----------------------------------------------------------------------------
// Messages sent from the renderer to the browser.
@@ -1539,6 +1543,10 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_HittestData, FrameHostMsg_HittestData_Params)
// FrameMsg_RunFileChooserResponse message.
IPC_MESSAGE_ROUTED1(FrameHostMsg_RunFileChooser, content::FileChooserParams)
+// Tells the parent that a child's frame, which is a remote frame, needs to
+// be printed.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_PrintRemoteFrame, gfx::Rect /* size */, int)
+
#if defined(USE_EXTERNAL_POPUP_MENU)
// Message to show/hide a popup menu using native controls.
« no previous file with comments | « content/browser/utility_process_host_impl.cc ('k') | content/public/app/mojo/content_utility_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698