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

Side by Side Diff: chrome/common/extensions/chrome_extension_messages.h

Issue 1589623002: Keep track of accessibility focus across windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final suggestions Created 4 years, 10 months 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 // Chrome-specific IPC messages for extensions. 5 // Chrome-specific IPC messages for extensions.
6 // Extension-related messages that aren't specific to Chrome live in 6 // Extension-related messages that aren't specific to Chrome live in
7 // extensions/common/extension_messages.h. 7 // extensions/common/extension_messages.h.
8 // 8 //
9 // Multiply-included message file, hence no include guard. 9 // Multiply-included message file, hence no include guard.
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) 74 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData)
75 IPC_STRUCT_TRAITS_MEMBER(tree_id) 75 IPC_STRUCT_TRAITS_MEMBER(tree_id)
76 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) 76 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id)
77 IPC_STRUCT_TRAITS_MEMBER(url) 77 IPC_STRUCT_TRAITS_MEMBER(url)
78 IPC_STRUCT_TRAITS_MEMBER(title) 78 IPC_STRUCT_TRAITS_MEMBER(title)
79 IPC_STRUCT_TRAITS_MEMBER(mimetype) 79 IPC_STRUCT_TRAITS_MEMBER(mimetype)
80 IPC_STRUCT_TRAITS_MEMBER(doctype) 80 IPC_STRUCT_TRAITS_MEMBER(doctype)
81 IPC_STRUCT_TRAITS_MEMBER(loaded) 81 IPC_STRUCT_TRAITS_MEMBER(loaded)
82 IPC_STRUCT_TRAITS_MEMBER(loading_progress) 82 IPC_STRUCT_TRAITS_MEMBER(loading_progress)
83 IPC_STRUCT_TRAITS_MEMBER(focus_id)
83 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) 84 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id)
84 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) 85 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset)
85 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) 86 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id)
86 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) 87 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset)
87 IPC_STRUCT_TRAITS_END() 88 IPC_STRUCT_TRAITS_END()
88 89
89 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeUpdate) 90 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeUpdate)
90 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) 91 IPC_STRUCT_TRAITS_MEMBER(has_tree_data)
91 IPC_STRUCT_TRAITS_MEMBER(tree_data) 92 IPC_STRUCT_TRAITS_MEMBER(tree_data)
92 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) 93 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear)
(...skipping 26 matching lines...) Expand all
119 // Messages sent from the renderer to the browser. 120 // Messages sent from the renderer to the browser.
120 121
121 122
122 // Sent by the renderer to implement chrome.webstore.install(). 123 // Sent by the renderer to implement chrome.webstore.install().
123 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, 124 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall,
124 int32_t /* install id */, 125 int32_t /* install id */,
125 int32_t /* return route id */, 126 int32_t /* return route id */,
126 std::string /* Web Store item ID */, 127 std::string /* Web Store item ID */,
127 GURL /* requestor URL */, 128 GURL /* requestor URL */,
128 int /* listeners_mask */) 129 int /* listeners_mask */)
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/automation.idl ('k') | chrome/renderer/extensions/automation_internal_custom_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698