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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 6479004: Print Preview: Hook up the print button to initiate a normal print operation.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add a comment Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/print_preview.js ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 RendererPreferences) 122 RendererPreferences)
123 123
124 // Tells the renderer to perform the given action on the media player 124 // Tells the renderer to perform the given action on the media player
125 // located at the given point. 125 // located at the given point.
126 IPC_MESSAGE_ROUTED2(ViewMsg_MediaPlayerActionAt, 126 IPC_MESSAGE_ROUTED2(ViewMsg_MediaPlayerActionAt,
127 gfx::Point, /* location */ 127 gfx::Point, /* location */
128 WebKit::WebMediaPlayerAction) 128 WebKit::WebMediaPlayerAction)
129 129
130 IPC_MESSAGE_ROUTED0(ViewMsg_PrintNodeUnderContextMenu) 130 IPC_MESSAGE_ROUTED0(ViewMsg_PrintNodeUnderContextMenu)
131 131
132 // Tells the renderer to print the print preview tab's PDF plugin without
133 // showing the print dialog.
134 IPC_MESSAGE_ROUTED0(ViewMsg_PrintForPrintPreview)
135
132 // Tells the render view to close. 136 // Tells the render view to close.
133 IPC_MESSAGE_ROUTED0(ViewMsg_Close) 137 IPC_MESSAGE_ROUTED0(ViewMsg_Close)
134 138
135 // Tells the render view to change its size. A ViewHostMsg_PaintRect message 139 // Tells the render view to change its size. A ViewHostMsg_PaintRect message
136 // is generated in response provided new_size is not empty and not equal to 140 // is generated in response provided new_size is not empty and not equal to
137 // the view's current size. The generated ViewHostMsg_PaintRect message will 141 // the view's current size. The generated ViewHostMsg_PaintRect message will
138 // have the IS_RESIZE_ACK flag set. It also receives the resizer rect so that 142 // have the IS_RESIZE_ACK flag set. It also receives the resizer rect so that
139 // we don't have to fetch it every time WebKit asks for it. 143 // we don't have to fetch it every time WebKit asks for it.
140 IPC_MESSAGE_ROUTED2(ViewMsg_Resize, 144 IPC_MESSAGE_ROUTED2(ViewMsg_Resize,
141 gfx::Size /* new_size */, 145 gfx::Size /* new_size */,
(...skipping 2391 matching lines...) Expand 10 before | Expand all | Expand 10 after
2533 // The currently displayed PDF has an unsupported feature. 2537 // The currently displayed PDF has an unsupported feature.
2534 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) 2538 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2535 2539
2536 // JavaScript related messages ----------------------------------------------- 2540 // JavaScript related messages -----------------------------------------------
2537 2541
2538 // Notify the JavaScript engine in the render to change its parameters 2542 // Notify the JavaScript engine in the render to change its parameters
2539 // while performing stress testing. 2543 // while performing stress testing.
2540 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2544 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2541 int /* cmd */, 2545 int /* cmd */,
2542 int /* param */) 2546 int /* param */)
OLDNEW
« no previous file with comments | « chrome/browser/resources/print_preview.js ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698