diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-02 04:54:18 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-02 04:54:18 +0800 |
commit | 478e8b73f9a7302f0c30aaa685fc3104b99d7480 (patch) | |
tree | 4f800d05da81b03483afa46144e147510aa1503b /embed/mozilla/GlobalHistory.cpp | |
parent | d8ef21e4e64809d0c244c6b68701505807620569 (diff) | |
download | gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar.gz gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar.bz2 gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar.lz gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar.xz gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.tar.zst gsoc2013-epiphany-478e8b73f9a7302f0c30aaa685fc3104b99d7480.zip |
We don't need to implement nsIBrowserHistory.
2005-01-01 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/mozilla/GlobalHistory.cpp:
* embed/mozilla/GlobalHistory.h:
We don't need to implement nsIBrowserHistory.
Diffstat (limited to 'embed/mozilla/GlobalHistory.cpp')
-rw-r--r-- | embed/mozilla/GlobalHistory.cpp | 76 |
1 files changed, 1 insertions, 75 deletions
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 <nsEmbedString.h> #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 |