| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 GuestViews. | 5 // IPC messages for GuestViews. |
| 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 | 9 |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 int /* element_instance_id */, | 47 int /* element_instance_id */, |
| 48 int /* guest_instance_id */, | 48 int /* guest_instance_id */, |
| 49 base::DictionaryValue /* attach_params */) | 49 base::DictionaryValue /* attach_params */) |
| 50 | 50 |
| 51 // Tells the browser to create a mime handler guest view for a plugin. | 51 // Tells the browser to create a mime handler guest view for a plugin. |
| 52 IPC_MESSAGE_CONTROL4(GuestViewHostMsg_CreateMimeHandlerViewGuest, | 52 IPC_MESSAGE_CONTROL4(GuestViewHostMsg_CreateMimeHandlerViewGuest, |
| 53 int /* render_frame_id */, | 53 int /* render_frame_id */, |
| 54 std::string /* view_id */, | 54 std::string /* view_id */, |
| 55 int /* element_instance_id */, | 55 int /* element_instance_id */, |
| 56 gfx::Size /* element_size */) | 56 gfx::Size /* element_size */) |
| 57 | |
| OLD | NEW |