Chromium Code Reviews| 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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 743 int /* element_instance_id */, | 743 int /* element_instance_id */, |
| 744 int /* guest_instance_id */, | 744 int /* guest_instance_id */, |
| 745 base::DictionaryValue /* attach_params */) | 745 base::DictionaryValue /* attach_params */) |
| 746 | 746 |
| 747 // Tells the browser to create a mime handler guest view for a plugin. | 747 // Tells the browser to create a mime handler guest view for a plugin. |
| 748 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_CreateMimeHandlerViewGuest, | 748 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_CreateMimeHandlerViewGuest, |
| 749 int /* render_frame_id */, | 749 int /* render_frame_id */, |
| 750 std::string /* embedder_url */, | 750 std::string /* embedder_url */, |
| 751 std::string /* mime_type */, | 751 std::string /* mime_type */, |
| 752 int /* element_instance_id */) | 752 int /* element_instance_id */) |
| 753 | |
| 754 | |
| 755 // Sent when a query selector request is made from the automation API. | |
| 756 // AXid is the accessibility tree ID of the starting element. | |
| 757 IPC_MESSAGE_ROUTED3(ExtensionMsg_AutomationQuerySelector, | |
| 758 int /* request_id */, | |
| 759 int /* AXid */, | |
| 760 base::string16 /* selector */) | |
| 761 | |
| 762 // Result of a query selector request. | |
| 763 // AXid is the accessibility tree ID of the result element; 0 indicates no | |
| 764 // result. | |
| 765 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_AutomationQuerySelector_Result, | |
| 766 int /* request_id */, | |
| 767 std::string /* error */, | |
| 768 int /* result_acc_obj_id */) | |
|
Devlin
2014/10/28 21:05:10
This order looks different than the one you use in
aboxhall
2014/10/28 23:43:57
Actually the _helper.cc file had it in the wrong o
| |
| OLD | NEW |