From 415ad48ad827f0a88645069f2bb731d497f5f23e Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Wed, 3 Jun 2009 16:44:57 +0000 Subject: 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 --- chrome/browser/automation/automation_provider.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'chrome/browser/automation/automation_provider.h') diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index 1506868..3c49ddb 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -451,6 +451,9 @@ class AutomationProvider : public base::RefCounted, void GetWindowTitle(int handle, string16* text); + // Returns the number of blocked popups in the tab |handle|. + void GetBlockedPopupCount(int handle, int* count); + // Convert a tab handle into a TabContents. If |tab| is non-NULL a pointer // to the tab is also returned. Returns NULL in case of failure or if the tab // is not of the TabContents type. -- cgit v1.1