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

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

Issue 2486273002: Send mouse location as part of automation events. (Closed)
Patch Set: Fix Created 4 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 // 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) 113 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update)
114 114
115 // Type of event. 115 // Type of event.
116 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) 116 IPC_STRUCT_MEMBER(ui::AXEvent, event_type)
117 117
118 // ID of the node that the event applies to. 118 // ID of the node that the event applies to.
119 IPC_STRUCT_MEMBER(int, id) 119 IPC_STRUCT_MEMBER(int, id)
120 120
121 // The source of this event. 121 // The source of this event.
122 IPC_STRUCT_MEMBER(ui::AXEventFrom, event_from) 122 IPC_STRUCT_MEMBER(ui::AXEventFrom, event_from)
123
124 // The mouse location in screen coordinates.
125 IPC_STRUCT_MEMBER(gfx::Point, mouse_location)
123 IPC_STRUCT_END() 126 IPC_STRUCT_END()
124 127
125 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityLocationChangeParams) 128 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityLocationChangeParams)
126 // ID of the accessibility tree that this event applies to. 129 // ID of the accessibility tree that this event applies to.
127 IPC_STRUCT_MEMBER(int, tree_id) 130 IPC_STRUCT_MEMBER(int, tree_id)
128 131
129 // ID of the object whose location is changing. 132 // ID of the object whose location is changing.
130 IPC_STRUCT_MEMBER(int, id) 133 IPC_STRUCT_MEMBER(int, id)
131 134
132 // The object's new location info. 135 // The object's new location info.
(...skipping 14 matching lines...) Expand all
147 150
148 // Messages sent from the renderer to the browser. 151 // Messages sent from the renderer to the browser.
149 152
150 153
151 // Sent by the renderer to implement chrome.webstore.install(). 154 // Sent by the renderer to implement chrome.webstore.install().
152 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, 155 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall,
153 int32_t /* install id */, 156 int32_t /* install id */,
154 int32_t /* return route id */, 157 int32_t /* return route id */,
155 std::string /* Web Store item ID */, 158 std::string /* Web Store item ID */,
156 int /* listeners_mask */) 159 int /* listeners_mask */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698