diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 16:44:57 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 16:44:57 +0000 |
commit | 415ad48ad827f0a88645069f2bb731d497f5f23e (patch) | |
tree | a9efe67f99ae4625badca6c19848487e27bc5dad /chrome/test/automation/automation_messages_internal.h | |
parent | bd745438c31d1646cfb1e99a419e7b17dc2b90d2 (diff) | |
download | chromium_src-415ad48ad827f0a88645069f2bb731d497f5f23e.zip chromium_src-415ad48ad827f0a88645069f2bb731d497f5f23e.tar.gz chromium_src-415ad48ad827f0a88645069f2bb731d497f5f23e.tar.bz2 |
This is the first of probably several patches trying to clean up the BlockedPopupContainer into something that can be cross-platform.
- BlokedPopupContainers are no longer ConstrainedWindows.
- There is now a cross platform base class that contains most of the model/controller logic. The view now inherits from it. This is an improvement.
Review URL: http://codereview.chromium.org/119006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/automation_messages_internal.h')
-rw-r--r-- | chrome/test/automation/automation_messages_internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h index 3922869..7e6d9e7 100644 --- a/chrome/test/automation/automation_messages_internal.h +++ b/chrome/test/automation/automation_messages_internal.h @@ -927,4 +927,11 @@ IPC_BEGIN_MESSAGES(Automation) IPC_SYNC_MESSAGE_ROUTED1_0(AutomationMsg_SetProxyConfig, std::string /* proxy_config_json_string */) + // This message requests the number of blocked popups in a certain tab with + // the given handle. The return value is the number of blocked popups, or -1 + // if this request failed. + IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_BlockedPopupCount, + int /* tab_handle */, + int /* blocked_popup_count */) + IPC_END_MESSAGES(Automation) |