summaryrefslogtreecommitdiffstats
path: root/chrome/common/automation_messages_internal.h
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-02 18:59:18 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-02 18:59:18 +0000
commit29bbaa99f0ff65f96686d47a4c1c85576cfe1a26 (patch)
treebe6e013c6b11d4245159ddfc3d180b709912a02f /chrome/common/automation_messages_internal.h
parent8a14454664eec5886b375a1c7e10c6ca20ad823d (diff)
downloadchromium_src-29bbaa99f0ff65f96686d47a4c1c85576cfe1a26.zip
chromium_src-29bbaa99f0ff65f96686d47a4c1c85576cfe1a26.tar.gz
chromium_src-29bbaa99f0ff65f96686d47a4c1c85576cfe1a26.tar.bz2
Automation: fix chrome/browser dependency on chrome/test headers.
This change also fixes a duplication of declarations introduced by Chrome Frame. Also, this removes AutocompleteEditProxy and its only two callers; we now have coverage from browser and unit tests which are much more solid. BUG=60803 Review URL: http://codereview.chromium.org/7104029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87648 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/automation_messages_internal.h')
-rw-r--r--chrome/common/automation_messages_internal.h66
1 files changed, 33 insertions, 33 deletions
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index 678a68e..7f959e2 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -9,7 +9,6 @@
#include "base/string16.h"
#include "chrome/common/content_settings.h"
-#include "chrome/test/automation/autocomplete_edit_proxy.h"
#include "content/common/navigation_types.h"
#include "googleurl/src/gurl.h"
#include "ipc/ipc_message_macros.h"
@@ -17,7 +16,6 @@
#include "ui/gfx/rect.h"
#include "webkit/glue/window_open_disposition.h"
-
// NOTE: All IPC messages have either a routing_id of 0 (for asynchronous
// messages), or one that's been assigned by the proxy (for calls
// which expect a response). The routing_id shouldn't be used for
@@ -31,6 +29,8 @@
// of any of the messages below. This will be fixed once Xcode supports
// __COUNTER__, in which case we can get rid of the __LINE__.
+
+
#define IPC_MESSAGE_START AutomationMsgStart
// This message is fired when the AutomationProvider is up and running
@@ -341,10 +341,10 @@ IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_WindowForBrowser,
bool /* success flag */,
int /* window handle */)
-// This message requests the AutocompleteEdit associated with the specified
-// browser handle.
-// The return value contains a success flag and the handle of the omnibox.
-IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_AutocompleteEditForBrowser,
+// TODO(phajdan.jr): Remove when the reference build is updated (this and
+// all others marked "DEPRECATED MESSAGE").
+// (intentionally blank line)
+IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_DEPRECATED_AutocompleteEditForBrowser,
int /* browser handle */,
bool /* success flag */,
int /* AutocompleteEdit handle */)
@@ -647,44 +647,44 @@ IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_SavePage,
int,
bool)
-// This message requests the text currently being displayed in the
-// AutocompleteEdit. The parameter is the handle to the AutocompleteEdit.
-// The return value is a string indicating the text in the AutocompleteEdit.
-IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_AutocompleteEditGetText,
+// TODO(phajdan.jr): Remove when the reference build is updated (this and
+// all others marked "DEPRECATED MESSAGE").
+// (intentionally blank line)
+IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_DEPRECATED_AutocompleteEditGetText,
int /* autocomplete edit handle */,
bool /* the requested autocomplete edit exists */,
string16 /* omnibox text */)
-// This message sets the text being displayed in the AutocompleteEdit. The
-// first parameter is the handle to the omnibox and the second parameter is
-// the text to be displayed in the AutocompleteEdit.
-// The return value has no parameters and is returned when the operation has
-// completed.
-IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_AutocompleteEditSetText,
+// TODO(phajdan.jr): Remove when the reference build is updated (this and
+// all others marked "DEPRECATED MESSAGE").
+// (intentionally blank line)
+// (intentionally blank line)
+// (intentionally blank line)
+IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_DEPRECATED_AutocompleteEditSetText,
int /* autocomplete edit handle */,
string16 /* text to set */,
bool /* the requested autocomplete edit exists */)
-// This message requests if a query to a autocomplete provider is still in
-// progress. The first parameter in the request is the handle to the
-// autocomplete edit.
-// The first return value indicates if the request succeeded.
-// The second return value indicates if a query is still in progress.
+// TODO(phajdan.jr): Remove when the reference build is updated (this and
+// all others marked "DEPRECATED MESSAGE").
+// (intentionally blank line)
+// (intentionally blank line)
+// (intentionally blank line)
IPC_SYNC_MESSAGE_CONTROL1_2( \
- AutomationMsg_AutocompleteEditIsQueryInProgress,
+ AutomationMsg_DEPRECATED_AutocompleteEditIsQueryInProgress,
int /* autocomplete edit handle*/,
bool /* the requested autocomplete edit exists */,
bool /* indicates if a query is in progress */)
-// This message requests a list of the autocomplete messages currently being
-// displayed by the popup. The parameter in the request is a handle to the
-// autocomplete edit.
-// The first return value indicates if the request was successful, while
-// while the second is the actual list of matches.
-IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_AutocompleteEditGetMatches,
+// TODO(phajdan.jr): Remove when the reference build is updated (this and
+// all others marked "DEPRECATED MESSAGE").
+// (intentionally blank line)
+// (intentionally blank line)
+// (intentionally blank line)
+IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_DEPRECATED_AutocompleteEditGetMatches,
int /* autocomplete edit handle*/,
bool /* the requested autocomplete edit exists */,
- std::vector<AutocompleteMatchData> /* matches */)
+ std::vector<int> /* matches */)
// This message requests the execution of a browser command in the browser
// for which the handle is specified.
@@ -764,7 +764,7 @@ IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_ClickInfoBarAccept,
int /* tab_handle */,
size_t /* info bar index */,
bool /* wait for navigation */,
-// This line blank on purpose, see comment atop file about __LINE__.
+// (intentionally blank line), see comment atop file about __LINE__.
/* navigation result */
AutomationMsg_NavigationResponseValues)
@@ -779,7 +779,7 @@ IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_GetLastNavigationTime,
IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_WaitForNavigation,
int /* tab_handle */,
int64 /* last navigation time */,
-// This line blank on purpose, see comment atop file about __LINE__.
+// (intentionally blank line), see comment atop file about __LINE__.
/* navigation result */
AutomationMsg_NavigationResponseValues)
@@ -1417,8 +1417,8 @@ IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_WaitForInfoBarCount,
size_t /* target count */,
bool /* success */)
-// Waits for the autocomplete edit to receive focus.
-IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_WaitForAutocompleteEditFocus,
+// TODO(phajdan.jr): Remove this message.
+IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_DEPRECATED_WaitForAutocompleteEditFocus,
int /* autocomplete edit handle */,
bool /* success */)