| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common_param_traits.h" | 8 #include "content/common/common_param_traits.h" |
| 9 #include "content/common/webkit_param_traits.h" | 9 #include "content/common/webkit_param_traits.h" |
| 10 #include "ipc/ipc_channel_handle.h" | 10 #include "ipc/ipc_channel_handle.h" |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 bool /* allow_buffer_flipping */) | 322 bool /* allow_buffer_flipping */) |
| 323 | 323 |
| 324 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject, | 324 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject, |
| 325 int /* route id */, | 325 int /* route id */, |
| 326 bool /* success */) | 326 bool /* success */) |
| 327 | 327 |
| 328 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement, | 328 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement, |
| 329 int /* route id */, | 329 int /* route id */, |
| 330 bool /* success */) | 330 bool /* success */) |
| 331 | 331 |
| 332 IPC_SYNC_MESSAGE_ROUTED1_2(PluginHostMsg_ResolveProxy, |
| 333 GURL /* url */, |
| 334 bool /* result */, |
| 335 std::string /* proxy list */) |
| 336 |
| 332 IPC_MESSAGE_ROUTED3(PluginHostMsg_SetCookie, | 337 IPC_MESSAGE_ROUTED3(PluginHostMsg_SetCookie, |
| 333 GURL /* url */, | 338 GURL /* url */, |
| 334 GURL /* first_party_for_cookies */, | 339 GURL /* first_party_for_cookies */, |
| 335 std::string /* cookie */) | 340 std::string /* cookie */) |
| 336 | 341 |
| 337 IPC_SYNC_MESSAGE_ROUTED2_1(PluginHostMsg_GetCookies, | 342 IPC_SYNC_MESSAGE_ROUTED2_1(PluginHostMsg_GetCookies, |
| 338 GURL /* url */, | 343 GURL /* url */, |
| 339 GURL /* first_party_for_cookies */, | 344 GURL /* first_party_for_cookies */, |
| 340 std::string /* cookies */) | 345 std::string /* cookies */) |
| 341 | 346 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 476 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
| 472 std::vector<NPVariant_Param> /* args */, | 477 std::vector<NPVariant_Param> /* args */, |
| 473 NPVariant_Param /* result_param */, | 478 NPVariant_Param /* result_param */, |
| 474 bool /* result */) | 479 bool /* result */) |
| 475 | 480 |
| 476 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 481 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 477 std::string /* script */, | 482 std::string /* script */, |
| 478 bool /* popups_allowed */, | 483 bool /* popups_allowed */, |
| 479 NPVariant_Param /* result_param */, | 484 NPVariant_Param /* result_param */, |
| 480 bool /* result */) | 485 bool /* result */) |
| OLD | NEW |