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

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

Issue 1155183006: Reimplement automation API on top of C++-backed AXTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@automation_faster_2
Patch Set: Rebase, delete some code that shouldn't have been commented out Created 5 years, 6 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 IPC_STRUCT_MEMBER(int, id) 71 IPC_STRUCT_MEMBER(int, id)
72 IPC_STRUCT_END() 72 IPC_STRUCT_END()
73 73
74 // Forward an accessibility message to an extension process where an 74 // Forward an accessibility message to an extension process where an
75 // extension is using the automation API to listen for accessibility events. 75 // extension is using the automation API to listen for accessibility events.
76 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityEvent, 76 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityEvent,
77 ExtensionMsg_AccessibilityEventParams) 77 ExtensionMsg_AccessibilityEventParams)
78 78
79 // Messages sent from the renderer to the browser. 79 // Messages sent from the renderer to the browser.
80 80
81 //
David Tseng 2015/06/10 17:48:15 ?
82 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_AutomationRequest,
David Tseng 2015/06/10 17:48:15 What kind of request?
dmazzoni 2015/06/11 19:09:11 Oops, this was included by mistake. All changes to
83 int /* myint */)
David Tseng 2015/06/10 17:48:15 ?
81 84
82 // Sent by the renderer to implement chrome.webstore.install(). 85 // Sent by the renderer to implement chrome.webstore.install().
83 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, 86 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall,
84 int32 /* install id */, 87 int32 /* install id */,
85 int32 /* return route id */, 88 int32 /* return route id */,
86 std::string /* Web Store item ID */, 89 std::string /* Web Store item ID */,
87 GURL /* requestor URL */, 90 GURL /* requestor URL */,
88 int /* listeners_mask */) 91 int /* listeners_mask */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698