| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 bool /* notify_needed */, | 365 bool /* notify_needed */, |
| 366 intptr_t /* notify_data */) | 366 intptr_t /* notify_data */) |
| 367 | 367 |
| 368 IPC_MESSAGE_ROUTED2(PluginHostMsg_DeferResourceLoading, | 368 IPC_MESSAGE_ROUTED2(PluginHostMsg_DeferResourceLoading, |
| 369 int /* resource_id */, | 369 int /* resource_id */, |
| 370 bool /* defer */) | 370 bool /* defer */) |
| 371 | 371 |
| 372 IPC_SYNC_MESSAGE_CONTROL1_0(PluginHostMsg_SetException, | 372 IPC_SYNC_MESSAGE_CONTROL1_0(PluginHostMsg_SetException, |
| 373 std::string /* message */) | 373 std::string /* message */) |
| 374 | 374 |
| 375 #if defined(OS_MACOSX) |
| 376 IPC_MESSAGE_ROUTED1(PluginHostMsg_UpdateGeometry_ACK, |
| 377 int /* ack_key */) |
| 378 #endif |
| 379 |
| 375 IPC_END_MESSAGES(PluginHost) | 380 IPC_END_MESSAGES(PluginHost) |
| 376 | 381 |
| 377 //----------------------------------------------------------------------------- | 382 //----------------------------------------------------------------------------- |
| 378 // NPObject messages | 383 // NPObject messages |
| 379 // These are messages used to marshall NPObjects. They are sent both from the | 384 // These are messages used to marshall NPObjects. They are sent both from the |
| 380 // plugin to the renderer and from the renderer to the plugin. | 385 // plugin to the renderer and from the renderer to the plugin. |
| 381 IPC_BEGIN_MESSAGES(NPObject) | 386 IPC_BEGIN_MESSAGES(NPObject) |
| 382 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) | 387 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) |
| 383 | 388 |
| 384 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, | 389 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 NPVariant_Param /* result_param */, | 426 NPVariant_Param /* result_param */, |
| 422 bool /* result */) | 427 bool /* result */) |
| 423 | 428 |
| 424 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 429 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 425 std::string /* script */, | 430 std::string /* script */, |
| 426 bool /* popups_allowed */, | 431 bool /* popups_allowed */, |
| 427 NPVariant_Param /* result_param */, | 432 NPVariant_Param /* result_param */, |
| 428 bool /* result */) | 433 bool /* result */) |
| 429 | 434 |
| 430 IPC_END_MESSAGES(NPObject) | 435 IPC_END_MESSAGES(NPObject) |
| OLD | NEW |