Removing unneeded methods from nsIBrowserWindow interface.

This commit is contained in:
joki%netscape.com 1998-11-05 23:57:02 +00:00
Родитель fe47b460b4
Коммит 3c2769a525
3 изменённых файлов: 4 добавлений и 14 удалений

Просмотреть файл

@ -90,16 +90,6 @@ public:
NS_IMETHOD GetWebShell(nsIWebShell*& aResult) = 0;
/**
* Finds text in content
*/
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound) = 0;
/**
* Redraws contents of browser window
*/
NS_IMETHOD ForceRefresh() = 0;
// XXX minimize, maximize
// XXX event control: enable/disable window close box, stick to glass, modal
};

Просмотреть файл

@ -83,8 +83,6 @@ public:
NS_IMETHOD GetStatus(PRUnichar** aResult);
NS_IMETHOD SetProgress(PRInt32 aProgress, PRInt32 aProgressMax);
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound);
NS_IMETHOD ForceRefresh();
// nsIStreamObserver
NS_IMETHOD OnStartBinding(nsIURL* aURL, const char *aContentType);
@ -135,6 +133,8 @@ public:
void DoFind();
void DoSelectAll();
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound);
NS_IMETHOD ForceRefresh();
void ShowPrintPreview(PRInt32 aID);

Просмотреть файл

@ -94,8 +94,6 @@ public:
NS_IMETHOD GetStatus(PRUnichar** aResult);
NS_IMETHOD SetProgress(PRInt32 aProgress, PRInt32 aProgressMax);
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound);
NS_IMETHOD ForceRefresh();
NS_IMETHOD HandleEvent(nsGUIEvent * anEvent);
@ -152,6 +150,8 @@ public:
void DoFind();
void DoSelectAll();
void DoAppsDialog();
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound);
NS_IMETHOD ForceRefresh();
// nsIToolbarManager Listener Interface
NS_IMETHOD NotifyToolbarManagerChangedSize(nsIToolbarManager* aToolbarMgr);