| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // IPC messages for extensions. | 5 // IPC messages for extensions. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 extensions::StackTrace /* stack trace */, | 726 extensions::StackTrace /* stack trace */, |
| 727 int32 /* severity level */) | 727 int32 /* severity level */) |
| 728 | 728 |
| 729 // Sent by the renderer to set initialization parameters of a Browser Plugin | 729 // Sent by the renderer to set initialization parameters of a Browser Plugin |
| 730 // that is identified by |element_instance_id|. | 730 // that is identified by |element_instance_id|. |
| 731 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_AttachGuest, | 731 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_AttachGuest, |
| 732 int /* routing_id */, | 732 int /* routing_id */, |
| 733 int /* element_instance_id */, | 733 int /* element_instance_id */, |
| 734 int /* guest_instance_id */, | 734 int /* guest_instance_id */, |
| 735 base::DictionaryValue /* attach_params */) | 735 base::DictionaryValue /* attach_params */) |
| 736 |
| 737 // Tells the browser to create a mime handler guest view for a plugin. |
| 738 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_CreateMimeHandlerViewGuest, |
| 739 int /* render_frame_id */, |
| 740 std::string /* embedder_url */, |
| 741 std::string /* mime_type */, |
| 742 int /* element_instance_id */) |
| 743 |
| 744 // The ACK for ExtensionHostMsg_CreateMimeHandlerViewGuest. |
| 745 IPC_MESSAGE_CONTROL1(ExtensionMsg_CreateMimeHandlerViewGuestACK, |
| 746 int /* element_instance_id */) |
| OLD | NEW |