| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 */) |
| OLD | NEW |