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 // Sent when a query selector request is made from the automation API. | |
755 // acc_obj_id is the accessibility tree ID of the starting element. | |
756 IPC_MESSAGE_ROUTED3(ExtensionMsg_AutomationQuerySelector, | |
757 int /* request_id */, | |
758 int /* acc_obj_id */, | |
759 base::string16 /* selector */) | |
palmer
2014/11/01 00:20:48
What is the lexical/syntactic structure of these s
aboxhall
2014/11/03 17:27:11
Yes, they're CSS selectors. Where should the size
aboxhall
2014/11/03 22:35:19
Actually, after looking into this further, I'm not
| |
760 | |
761 // Result of a query selector request. | |
762 // result_acc_obj_id is the accessibility tree ID of the result element; 0 | |
763 // indicates no result. | |
764 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_AutomationQuerySelector_Result, | |
765 int /* request_id */, | |
766 std::string /* error */, | |
palmer
2014/11/01 00:20:48
What's the range of these errors? Constrained, or
aboxhall
2014/11/03 17:27:11
An enum sounds good; should it live in this file?
aboxhall
2014/11/03 22:35:19
Done.
| |
767 int /* result_acc_obj_id */) | |
OLD | NEW |