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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 795 int /* acc_obj_id */, | 795 int /* acc_obj_id */, |
| 796 base::string16 /* selector */) | 796 base::string16 /* selector */) |
| 797 | 797 |
| 798 // Result of a query selector request. | 798 // Result of a query selector request. |
| 799 // result_acc_obj_id is the accessibility tree ID of the result element; 0 | 799 // result_acc_obj_id is the accessibility tree ID of the result element; 0 |
| 800 // indicates no result. | 800 // indicates no result. |
| 801 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_AutomationQuerySelector_Result, | 801 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_AutomationQuerySelector_Result, |
| 802 int /* request_id */, | 802 int /* request_id */, |
| 803 ExtensionHostMsg_AutomationQuerySelector_Error /* error */, | 803 ExtensionHostMsg_AutomationQuerySelector_Error /* error */, |
| 804 int /* result_acc_obj_id */) | 804 int /* result_acc_obj_id */) |
| 805 | |
| 806 // Report the WebView parition ID to the WebView guest renderer process. | |
|
not at google - send to devlin
2015/08/31 18:31:44
You've added this to the "messages sent from rende
paulmeyer
2015/08/31 21:40:08
I've moved it to the correct section. I've also ma
| |
| 807 IPC_MESSAGE_CONTROL1(ExtensionMsg_SetWebViewPartitionID, | |
| 808 std::string /* webview_partition_id */) | |
| OLD | NEW |