| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included message file, hence no include guard. | 5 // Multiply-included message file, hence no include guard. |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
| 10 #include "content/public/common/webkit_param_traits.h" | 10 #include "content/public/common/webkit_param_traits.h" |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginSwappedIOSurface) | 465 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginSwappedIOSurface) |
| 466 #endif | 466 #endif |
| 467 | 467 |
| 468 IPC_MESSAGE_CONTROL1(PluginHostMsg_ClearSiteDataResult, | 468 IPC_MESSAGE_CONTROL1(PluginHostMsg_ClearSiteDataResult, |
| 469 bool /* success */) | 469 bool /* success */) |
| 470 | 470 |
| 471 IPC_MESSAGE_ROUTED2(PluginHostMsg_URLRedirectResponse, | 471 IPC_MESSAGE_ROUTED2(PluginHostMsg_URLRedirectResponse, |
| 472 bool /* allow */, | 472 bool /* allow */, |
| 473 int /* resource_id */) | 473 int /* resource_id */) |
| 474 | 474 |
| 475 // Forward client content_debug_logging to the host process's implementation. | |
| 476 IPC_MESSAGE_CONTROL2(PluginProcessHostMsg_ContentDebugRecordMsg, | |
| 477 int /* bug_id */, | |
| 478 std::string /* msg */) | |
| 479 IPC_SYNC_MESSAGE_CONTROL1_2(PluginProcessHostMsg_ContentDebugGetMessages, | |
| 480 int /* bug_id */, | |
| 481 bool /* handled */, | |
| 482 std::vector<std::string> /* msgs */) | |
| 483 | 475 |
| 484 //----------------------------------------------------------------------------- | 476 //----------------------------------------------------------------------------- |
| 485 // NPObject messages | 477 // NPObject messages |
| 486 // These are messages used to marshall NPObjects. They are sent both from the | 478 // These are messages used to marshall NPObjects. They are sent both from the |
| 487 // plugin to the renderer and from the renderer to the plugin. | 479 // plugin to the renderer and from the renderer to the plugin. |
| 488 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) | 480 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) |
| 489 | 481 |
| 490 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, | 482 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, |
| 491 NPIdentifier_Param /* name */, | 483 NPIdentifier_Param /* name */, |
| 492 bool /* result */) | 484 bool /* result */) |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 517 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
| 526 std::vector<NPVariant_Param> /* args */, | 518 std::vector<NPVariant_Param> /* args */, |
| 527 NPVariant_Param /* result_param */, | 519 NPVariant_Param /* result_param */, |
| 528 bool /* result */) | 520 bool /* result */) |
| 529 | 521 |
| 530 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 522 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 531 std::string /* script */, | 523 std::string /* script */, |
| 532 bool /* popups_allowed */, | 524 bool /* popups_allowed */, |
| 533 NPVariant_Param /* result_param */, | 525 NPVariant_Param /* result_param */, |
| 534 bool /* result */) | 526 bool /* result */) |
| OLD | NEW |