| 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/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
| 10 #include "content/public/common/common_param_traits.h" | 10 #include "content/public/common/common_param_traits.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 IPC_STRUCT_MEMBER(std::string, mime_type) | 47 IPC_STRUCT_MEMBER(std::string, mime_type) |
| 48 IPC_STRUCT_MEMBER(std::string, headers) | 48 IPC_STRUCT_MEMBER(std::string, headers) |
| 49 IPC_STRUCT_MEMBER(uint32, expected_length) | 49 IPC_STRUCT_MEMBER(uint32, expected_length) |
| 50 IPC_STRUCT_MEMBER(uint32, last_modified) | 50 IPC_STRUCT_MEMBER(uint32, last_modified) |
| 51 IPC_STRUCT_MEMBER(bool, request_is_seekable) | 51 IPC_STRUCT_MEMBER(bool, request_is_seekable) |
| 52 IPC_STRUCT_END() | 52 IPC_STRUCT_END() |
| 53 | 53 |
| 54 IPC_STRUCT_BEGIN(PluginMsg_UpdateGeometry_Param) | 54 IPC_STRUCT_BEGIN(PluginMsg_UpdateGeometry_Param) |
| 55 IPC_STRUCT_MEMBER(gfx::Rect, window_rect) | 55 IPC_STRUCT_MEMBER(gfx::Rect, window_rect) |
| 56 IPC_STRUCT_MEMBER(gfx::Rect, clip_rect) | 56 IPC_STRUCT_MEMBER(gfx::Rect, clip_rect) |
| 57 IPC_STRUCT_MEMBER(bool, transparent) | |
| 58 IPC_STRUCT_MEMBER(TransportDIB::Handle, windowless_buffer0) | 57 IPC_STRUCT_MEMBER(TransportDIB::Handle, windowless_buffer0) |
| 59 IPC_STRUCT_MEMBER(TransportDIB::Handle, windowless_buffer1) | 58 IPC_STRUCT_MEMBER(TransportDIB::Handle, windowless_buffer1) |
| 60 IPC_STRUCT_MEMBER(int, windowless_buffer_index) | 59 IPC_STRUCT_MEMBER(int, windowless_buffer_index) |
| 61 IPC_STRUCT_MEMBER(TransportDIB::Handle, background_buffer) | |
| 62 IPC_STRUCT_END() | 60 IPC_STRUCT_END() |
| 63 | 61 |
| 64 //----------------------------------------------------------------------------- | 62 //----------------------------------------------------------------------------- |
| 65 // PluginProcess messages | 63 // PluginProcess messages |
| 66 // These are messages sent from the browser to the plugin process. | 64 // These are messages sent from the browser to the plugin process. |
| 67 // Tells the plugin process to create a new channel for communication with a | 65 // Tells the plugin process to create a new channel for communication with a |
| 68 // given renderer. The channel name is returned in a | 66 // given renderer. The channel name is returned in a |
| 69 // PluginProcessHostMsg_ChannelCreated message. The renderer ID is passed so | 67 // PluginProcessHostMsg_ChannelCreated message. The renderer ID is passed so |
| 70 // that the plugin process reuses an existing channel to that process if it | 68 // that the plugin process reuses an existing channel to that process if it |
| 71 // exists. This ID is a unique opaque identifier generated by the browser | 69 // exists. This ID is a unique opaque identifier generated by the browser |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 507 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
| 510 std::vector<content::NPVariant_Param> /* args */, | 508 std::vector<content::NPVariant_Param> /* args */, |
| 511 content::NPVariant_Param /* result_param */, | 509 content::NPVariant_Param /* result_param */, |
| 512 bool /* result */) | 510 bool /* result */) |
| 513 | 511 |
| 514 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 512 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 515 std::string /* script */, | 513 std::string /* script */, |
| 516 bool /* popups_allowed */, | 514 bool /* popups_allowed */, |
| 517 content::NPVariant_Param /* result_param */, | 515 content::NPVariant_Param /* result_param */, |
| 518 bool /* result */) | 516 bool /* result */) |
| OLD | NEW |