| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, | 294 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, |
| 295 NPIdentifier_Param /* name */, | 295 NPIdentifier_Param /* name */, |
| 296 bool /* result */) | 296 bool /* result */) |
| 297 | 297 |
| 298 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) | 298 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) |
| 299 | 299 |
| 300 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, | 300 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, |
| 301 std::vector<NPIdentifier_Param> /* value */, | 301 std::vector<NPIdentifier_Param> /* value */, |
| 302 bool /* result */) | 302 bool /* result */) |
| 303 | 303 |
| 304 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Evaluate, | 304 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 305 std::string /* script */, | 305 std::string /* script */, |
| 306 bool /* popups_allowed */, |
| 306 NPVariant_Param /* result_param */, | 307 NPVariant_Param /* result_param */, |
| 307 bool /* result */) | 308 bool /* result */) |
| 308 | 309 |
| 309 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, | 310 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, |
| 310 std::string /* message */) | 311 std::string /* message */) |
| 311 | 312 |
| 312 IPC_END_MESSAGES(NPObject) | 313 IPC_END_MESSAGES(NPObject) |
| 313 | 314 |
| OLD | NEW |