OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "base/shared_memory.h" | 5 #include "base/shared_memory.h" |
6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
8 #include "ui/gfx/native_widget_types.h" | 8 #include "ui/gfx/native_widget_types.h" |
9 #include "webkit/glue/webcursor.h" | 9 #include "webkit/glue/webcursor.h" |
10 | 10 |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 | 278 |
279 IPC_MESSAGE_ROUTED3(PluginMsg_HandleURLRequestReply, | 279 IPC_MESSAGE_ROUTED3(PluginMsg_HandleURLRequestReply, |
280 unsigned long /* resource_id */, | 280 unsigned long /* resource_id */, |
281 GURL /* url */, | 281 GURL /* url */, |
282 int /* notify_id */) | 282 int /* notify_id */) |
283 | 283 |
284 IPC_MESSAGE_ROUTED2(PluginMsg_HTTPRangeRequestReply, | 284 IPC_MESSAGE_ROUTED2(PluginMsg_HTTPRangeRequestReply, |
285 unsigned long /* resource_id */, | 285 unsigned long /* resource_id */, |
286 int /* range_request_id */) | 286 int /* range_request_id */) |
287 | 287 |
| 288 IPC_SYNC_MESSAGE_ROUTED0_1(PluginMsg_CreateCommandBuffer, |
| 289 int /* route_id */) |
| 290 |
| 291 IPC_MESSAGE_ROUTED0(PluginMsg_DestroyCommandBuffer) |
| 292 |
288 IPC_MESSAGE_CONTROL1(PluginMsg_SignalModalDialogEvent, | 293 IPC_MESSAGE_CONTROL1(PluginMsg_SignalModalDialogEvent, |
289 gfx::NativeViewId /* containing_window */) | 294 gfx::NativeViewId /* containing_window */) |
290 | 295 |
291 IPC_MESSAGE_CONTROL1(PluginMsg_ResetModalDialogEvent, | 296 IPC_MESSAGE_CONTROL1(PluginMsg_ResetModalDialogEvent, |
292 gfx::NativeViewId /* containing_window */) | 297 gfx::NativeViewId /* containing_window */) |
293 | 298 |
294 #if defined(OS_MACOSX) | 299 #if defined(OS_MACOSX) |
295 // This message, used only on 10.6 and later, transmits the "fake" | 300 // This message, used only on 10.6 and later, transmits the "fake" |
296 // window handle allocated by the browser on behalf of the renderer | 301 // window handle allocated by the browser on behalf of the renderer |
297 // to the GPU plugin. | 302 // to the GPU plugin. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 515 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
511 std::vector<NPVariant_Param> /* args */, | 516 std::vector<NPVariant_Param> /* args */, |
512 NPVariant_Param /* result_param */, | 517 NPVariant_Param /* result_param */, |
513 bool /* result */) | 518 bool /* result */) |
514 | 519 |
515 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 520 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
516 std::string /* script */, | 521 std::string /* script */, |
517 bool /* popups_allowed */, | 522 bool /* popups_allowed */, |
518 NPVariant_Param /* result_param */, | 523 NPVariant_Param /* result_param */, |
519 bool /* result */) | 524 bool /* result */) |
OLD | NEW |