| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/common/ipc_message_macros.h" | 6 #include "chrome/common/ipc_message_macros.h" |
| 7 #include "webkit/glue/webcursor.h" | 7 #include "webkit/glue/webcursor.h" |
| 8 | 8 |
| 9 //----------------------------------------------------------------------------- | 9 //----------------------------------------------------------------------------- |
| 10 // PluginProcess messages | 10 // PluginProcess messages |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, | 324 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, |
| 325 NPIdentifier_Param /* name */, | 325 NPIdentifier_Param /* name */, |
| 326 bool /* result */) | 326 bool /* result */) |
| 327 | 327 |
| 328 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) | 328 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) |
| 329 | 329 |
| 330 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, | 330 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, |
| 331 std::vector<NPIdentifier_Param> /* value */, | 331 std::vector<NPIdentifier_Param> /* value */, |
| 332 bool /* result */) | 332 bool /* result */) |
| 333 | 333 |
| 334 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
| 335 std::vector<NPVariant_Param> /* args */, |
| 336 NPVariant_Param /* result_param */, |
| 337 bool /* result */) |
| 338 |
| 334 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 339 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 335 std::string /* script */, | 340 std::string /* script */, |
| 336 bool /* popups_allowed */, | 341 bool /* popups_allowed */, |
| 337 NPVariant_Param /* result_param */, | 342 NPVariant_Param /* result_param */, |
| 338 bool /* result */) | 343 bool /* result */) |
| 339 | 344 |
| 340 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, | 345 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, |
| 341 std::string /* message */) | 346 std::string /* message */) |
| 342 | 347 |
| 343 IPC_END_MESSAGES(NPObject) | 348 IPC_END_MESSAGES(NPObject) |
| OLD | NEW |