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