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

Unified Diff: chrome/common/automation_messages_internal.h

Issue 14977013: Delete Automation[Tab/Renderer]Helper and users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update now that 202087 is committed Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/automation_messages.cc ('k') | chrome/renderer/automation/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/automation_messages_internal.h
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index 107067ad6d487da1686d445f17a84a2d72ce0d5a..f8da54ea137c94418bc6ced7ba3232300b367861 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -14,8 +14,8 @@
// builds. Since we now define the IDs based on __LINE__, to allow these
// IPC messages to be used to control an old version of Chrome we need
// the message IDs to remain the same. This means that you should not
-// change the line number of these types of messages. You can, however,
-// change the browser <--> renderer messages.
+// change the line number of these types of messages.
+
#define IPC_MESSAGE_START AutomationMsgStart
@@ -965,54 +965,3 @@ IPC_SYNC_MESSAGE_CONTROL2_2(AutomationMsg_SendJSONRequest,
IPC_MESSAGE_CONTROL2(AutomationMsg_KeyPress,
int /* tab_handle */,
int /* key */)
-
-// Browser -> renderer messages.
-
-// Requests a snapshot.
-IPC_MESSAGE_ROUTED0(AutomationMsg_SnapshotEntirePage)
-
-#if !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS))
-// Requests to dump a heap profile.
-IPC_MESSAGE_ROUTED1(AutomationMsg_HeapProfilerDump,
- std::string /* reason */)
-#endif // !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS))
-
-// Requests processing of the given mouse event.
-IPC_MESSAGE_ROUTED1(AutomationMsg_ProcessMouseEvent,
- AutomationMouseEvent)
-
-// Renderer -> browser messages.
-
-// Sent as a response to |AutomationMsg_Snapshot|.
-IPC_MESSAGE_ROUTED3(AutomationMsg_SnapshotEntirePageACK,
- bool /* success */,
- std::vector<unsigned char> /* png bytes */,
- std::string /* error message */)
-
-// Sent when the renderer has scheduled a client redirect to occur.
-IPC_MESSAGE_ROUTED2(AutomationMsg_WillPerformClientRedirect,
- int64 /* frame_id */,
- double /* # of seconds till redirect will be performed */)
-
-// Sent when the renderer has completed or canceled a client redirect for a
-// particular frame. This message may be sent multiple times for the same
-// redirect.
-IPC_MESSAGE_ROUTED1(AutomationMsg_DidCompleteOrCancelClientRedirect,
- int64 /* frame_id */)
-
-// Sent right before processing a mouse event at the given point.
-// This is needed in addition to AutomationMsg_ProcessMouseEventACK so that
-// the client knows where the event occurred even if the event causes a modal
-// dialog to appear which blocks further messages.
-IPC_MESSAGE_ROUTED1(AutomationMsg_WillProcessMouseEventAt,
- gfx::Point)
-
-// Sent when the automation mouse event has been processed.
-IPC_MESSAGE_ROUTED2(AutomationMsg_ProcessMouseEventACK,
- bool /* success */,
- std::string /* error message */)
-
-// YOUR NEW MESSAGE MIGHT NOT BELONG HERE.
-// This is the section for renderer -> browser automation messages. If it is
-// an automation <-> browser message, put it above this section. The "no line
-// number change" applies only to the automation <-> browser messages.
« no previous file with comments | « chrome/common/automation_messages.cc ('k') | chrome/renderer/automation/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698