Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Side by Side Diff: extensions/common/extension_messages.h

Issue 655273005: Implement AutomationNode.querySelector(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Address comments Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 // acc_obj_id is the accessibility tree ID of the starting element.
757 IPC_MESSAGE_ROUTED3(ExtensionMsg_AutomationQuerySelector,
758 int /* request_id */,
759 int /* acc_obj_id */,
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
Devlin 2014/10/29 21:23:43 AXid doesn't refer to a variable name.
aboxhall 2014/10/30 18:34:18 Done.
764 // result.
765 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_AutomationQuerySelector_Result,
766 int /* request_id */,
767 std::string /* error */,
768 int /* result_acc_obj_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698