From 478e8b73f9a7302f0c30aaa685fc3104b99d7480 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 1 Jan 2005 20:54:18 +0000 Subject: We don't need to implement nsIBrowserHistory. 2005-01-01 Christian Persch * configure.ac: * embed/mozilla/GlobalHistory.cpp: * embed/mozilla/GlobalHistory.h: We don't need to implement nsIBrowserHistory. --- embed/mozilla/GlobalHistory.cpp | 76 +---------------------------------------- embed/mozilla/GlobalHistory.h | 4 +-- 2 files changed, 2 insertions(+), 78 deletions(-) (limited to 'embed') diff --git a/embed/mozilla/GlobalHistory.cpp b/embed/mozilla/GlobalHistory.cpp index 9d9140a35..874eedd96 100644 --- a/embed/mozilla/GlobalHistory.cpp +++ b/embed/mozilla/GlobalHistory.cpp @@ -32,7 +32,7 @@ #include #undef MOZILLA_STRICT_API -NS_IMPL_ISUPPORTS2(MozGlobalHistory, nsIGlobalHistory2, nsIBrowserHistory) +NS_IMPL_ISUPPORTS1 (MozGlobalHistory, nsIGlobalHistory2) MozGlobalHistory::MozGlobalHistory () { @@ -132,77 +132,3 @@ NS_IMETHODIMP MozGlobalHistory::SetPageTitle(nsIURI *aURI, const nsAString & aTi return NS_OK; } - -/* void hidePage (in nsIURI url); */ -NS_IMETHODIMP MozGlobalHistory::HidePage(nsIURI *aURI) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -#ifdef MOZ_NSIGLOBALHISTORY_NSIURIP -/* void removePage (in nsIURI aURI); */ -NS_IMETHODIMP MozGlobalHistory::RemovePage(nsIURI *aURI) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -/* void removePagesFromHost (in AUTF8String aHost, in boolean aEntireDomain); */ -NS_IMETHODIMP MozGlobalHistory::RemovePagesFromHost(const nsACString &aHost, - PRBool aEntireDomain) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} -#else -/* void removePage (in string aURL); */ -NS_IMETHODIMP MozGlobalHistory::RemovePage(const char *aURL) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -/* void removePagesFromHost (in string aHost, in boolean aEntireDomain); */ -NS_IMETHODIMP MozGlobalHistory::RemovePagesFromHost(const char *aHost, - PRBool aEntireDomain) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} -#endif - -/* void removeAllPages (); */ -NS_IMETHODIMP MozGlobalHistory::RemoveAllPages() -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -/* readonly attribute AUTF8String lastPageVisited; */ -NS_IMETHODIMP MozGlobalHistory::GetLastPageVisited(nsACString & aLastPageVisited) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -/* readonly attribute PRUint32 count; */ -NS_IMETHODIMP MozGlobalHistory::GetCount(PRUint32 *aCount) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -#ifdef MOZ_NSIGLOBALHISTORY_NSIURIP -/* void markPageAsTyped (in AUTF8String aURI) */ -NS_IMETHODIMP MozGlobalHistory::MarkPageAsTyped(nsIURI *aURI) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} -#else -/* void markPageAsTyped (in string url); */ -NS_IMETHODIMP MozGlobalHistory::MarkPageAsTyped(const char *url) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} -#endif - -#ifdef MOZ_NSIBROWSERHISTORY_ADDPAGEWITHDETAILS -/* void addPageWithDetails (in nsIURI aURI, in wstring aTitle, in long long aLastVisited); */ -NS_IMETHODIMP MozGlobalHistory::AddPageWithDetails(nsIURI *aURI, const PRUnichar *aTitle, PRInt64 aLastVisited) -{ - return NS_ERROR_NOT_IMPLEMENTED; -} -#endif diff --git a/embed/mozilla/GlobalHistory.h b/embed/mozilla/GlobalHistory.h index b8743caf0..992819a1e 100644 --- a/embed/mozilla/GlobalHistory.h +++ b/embed/mozilla/GlobalHistory.h @@ -24,7 +24,6 @@ #include "ephy-history.h" -#include #include #include @@ -41,7 +40,7 @@ { 0xb7, 0x9e, 0xf7, 0xaa, 0x49, 0xeb, 0x6a, 0x15} \ } -class MozGlobalHistory: public nsIBrowserHistory +class MozGlobalHistory: public nsIGlobalHistory2 { public: MozGlobalHistory (); @@ -49,7 +48,6 @@ class MozGlobalHistory: public nsIBrowserHistory NS_DECL_ISUPPORTS NS_DECL_NSIGLOBALHISTORY2 - NS_DECL_NSIBROWSERHISTORY private: EphyHistory *mGlobalHistory; -- cgit v1.2.3