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

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: '' 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/render_view.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 IPC_MESSAGE_ROUTED0(ViewMsg_PrintForPrintPreview)
jam 2011/02/10 01:29:13 nit: comment?
133
132 // Tells the render view to close. 134 // Tells the render view to close.
133 IPC_MESSAGE_ROUTED0(ViewMsg_Close) 135 IPC_MESSAGE_ROUTED0(ViewMsg_Close)
134 136
135 // Tells the render view to change its size. A ViewHostMsg_PaintRect message 137 // 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 138 // 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 139 // 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 140 // 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. 141 // we don't have to fetch it every time WebKit asks for it.
140 IPC_MESSAGE_ROUTED2(ViewMsg_Resize, 142 IPC_MESSAGE_ROUTED2(ViewMsg_Resize,
141 gfx::Size /* new_size */, 143 gfx::Size /* new_size */,
(...skipping 2379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2521 // The currently displayed PDF has an unsupported feature. 2523 // The currently displayed PDF has an unsupported feature.
2522 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) 2524 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2523 2525
2524 // JavaScript related messages ----------------------------------------------- 2526 // JavaScript related messages -----------------------------------------------
2525 2527
2526 // Notify the JavaScript engine in the render to change its parameters 2528 // Notify the JavaScript engine in the render to change its parameters
2527 // while performing stress testing. 2529 // while performing stress testing.
2528 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2530 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2529 int /* cmd */, 2531 int /* cmd */,
2530 int /* param */) 2532 int /* param */)
OLDNEW
« no previous file with comments | « chrome/browser/resources/print_preview.js ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698