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 "app/gfx/native_widget_types.h" | 5 #include "app/gfx/native_widget_types.h" |
6 #include "base/shared_memory.h" | 6 #include "base/shared_memory.h" |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
9 #include "webkit/glue/webcursor.h" | 9 #include "webkit/glue/webcursor.h" |
10 | 10 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 | 260 |
261 IPC_MESSAGE_ROUTED0(PluginMsg_DidFinishManualLoading) | 261 IPC_MESSAGE_ROUTED0(PluginMsg_DidFinishManualLoading) |
262 | 262 |
263 IPC_MESSAGE_ROUTED0(PluginMsg_DidManualLoadFail) | 263 IPC_MESSAGE_ROUTED0(PluginMsg_DidManualLoadFail) |
264 | 264 |
265 IPC_MESSAGE_ROUTED0(PluginMsg_InstallMissingPlugin) | 265 IPC_MESSAGE_ROUTED0(PluginMsg_InstallMissingPlugin) |
266 | 266 |
267 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_HandleURLRequestReply, | 267 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_HandleURLRequestReply, |
268 PluginMsg_URLRequestReply_Params) | 268 PluginMsg_URLRequestReply_Params) |
269 | 269 |
| 270 IPC_SYNC_MESSAGE_ROUTED0_1(PluginMsg_CreateCommandBuffer, |
| 271 int /* route_id */) |
| 272 |
270 IPC_MESSAGE_CONTROL1(PluginMsg_SignalModalDialogEvent, | 273 IPC_MESSAGE_CONTROL1(PluginMsg_SignalModalDialogEvent, |
271 gfx::NativeViewId /* containing_window */) | 274 gfx::NativeViewId /* containing_window */) |
272 | 275 |
273 IPC_MESSAGE_CONTROL1(PluginMsg_ResetModalDialogEvent, | 276 IPC_MESSAGE_CONTROL1(PluginMsg_ResetModalDialogEvent, |
274 gfx::NativeViewId /* containing_window */) | 277 gfx::NativeViewId /* containing_window */) |
275 IPC_END_MESSAGES(Plugin) | 278 IPC_END_MESSAGES(Plugin) |
276 | 279 |
277 | 280 |
278 //----------------------------------------------------------------------------- | 281 //----------------------------------------------------------------------------- |
279 // PluginHost messages | 282 // PluginHost messages |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 NPVariant_Param /* result_param */, | 424 NPVariant_Param /* result_param */, |
422 bool /* result */) | 425 bool /* result */) |
423 | 426 |
424 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 427 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
425 std::string /* script */, | 428 std::string /* script */, |
426 bool /* popups_allowed */, | 429 bool /* popups_allowed */, |
427 NPVariant_Param /* result_param */, | 430 NPVariant_Param /* result_param */, |
428 bool /* result */) | 431 bool /* result */) |
429 | 432 |
430 IPC_END_MESSAGES(NPObject) | 433 IPC_END_MESSAGES(NPObject) |
OLD | NEW |