| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 int /* input_type */, | 328 int /* input_type */, |
| 329 gfx::Rect /* caret_rect */) | 329 gfx::Rect /* caret_rect */) |
| 330 #endif | 330 #endif |
| 331 | 331 |
| 332 IPC_MESSAGE_ROUTED1(PluginHostMsg_URLRequest, | 332 IPC_MESSAGE_ROUTED1(PluginHostMsg_URLRequest, |
| 333 PluginHostMsg_URLRequest_Params) | 333 PluginHostMsg_URLRequest_Params) |
| 334 | 334 |
| 335 IPC_MESSAGE_ROUTED1(PluginHostMsg_CancelResource, | 335 IPC_MESSAGE_ROUTED1(PluginHostMsg_CancelResource, |
| 336 int /* id */) | 336 int /* id */) |
| 337 | 337 |
| 338 IPC_MESSAGE_ROUTED2(PluginHostMsg_InvalidateRect, | 338 IPC_MESSAGE_ROUTED1(PluginHostMsg_InvalidateRect, |
| 339 gfx::Rect /* rect */, | 339 gfx::Rect /* rect */) |
| 340 bool /* allow_buffer_flipping */) | |
| 341 | 340 |
| 342 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject, | 341 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject, |
| 343 int /* route id */, | 342 int /* route id */, |
| 344 bool /* success */) | 343 bool /* success */) |
| 345 | 344 |
| 346 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement, | 345 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement, |
| 347 int /* route id */, | 346 int /* route id */, |
| 348 bool /* success */) | 347 bool /* success */) |
| 349 | 348 |
| 350 IPC_SYNC_MESSAGE_ROUTED1_2(PluginHostMsg_ResolveProxy, | 349 IPC_SYNC_MESSAGE_ROUTED1_2(PluginHostMsg_ResolveProxy, |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 516 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
| 518 std::vector<NPVariant_Param> /* args */, | 517 std::vector<NPVariant_Param> /* args */, |
| 519 NPVariant_Param /* result_param */, | 518 NPVariant_Param /* result_param */, |
| 520 bool /* result */) | 519 bool /* result */) |
| 521 | 520 |
| 522 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 521 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 523 std::string /* script */, | 522 std::string /* script */, |
| 524 bool /* popups_allowed */, | 523 bool /* popups_allowed */, |
| 525 NPVariant_Param /* result_param */, | 524 NPVariant_Param /* result_param */, |
| 526 bool /* result */) | 525 bool /* result */) |
| OLD | NEW |