diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-12 08:37:43 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-12 08:37:43 +0800 |
commit | 824dfce72819337e7dad44f9b9c999caadd0e9a2 (patch) | |
tree | 5080b21ccbdf078fcd95eb2842e55ffd265aead6 /embed/mozilla/GlobalHistory.h | |
parent | 3a57d18b63e6cde5a2a3bed06834020794c0ebd9 (diff) | |
download | gsoc2013-epiphany-824dfce72819337e7dad44f9b9c999caadd0e9a2.tar.gz gsoc2013-epiphany-824dfce72819337e7dad44f9b9c999caadd0e9a2.tar.zst gsoc2013-epiphany-824dfce72819337e7dad44f9b9c999caadd0e9a2.zip |
*** empty log message ***
Diffstat (limited to 'embed/mozilla/GlobalHistory.h')
-rw-r--r-- | embed/mozilla/GlobalHistory.h | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/embed/mozilla/GlobalHistory.h b/embed/mozilla/GlobalHistory.h index 5b2e615a1..f1d810f6a 100644 --- a/embed/mozilla/GlobalHistory.h +++ b/embed/mozilla/GlobalHistory.h @@ -20,12 +20,32 @@ #define __GlobalHistory_h #include "nsError.h" +#include "nsIGlobalHistory.h" +#include "nsIBrowserHistory.h" -#define GALEON_GLOBALHISTORY_CID \ +#define EPHY_GLOBALHISTORY_CLASSNAME \ + "Epiphany's Global History Implementation" + +#define EPHY_GLOBALHISTORY_CID \ { 0xbe0c42c1, 0x39d4, 0x4271, { 0xb7, 0x9e, 0xf7, 0xaa, 0x49, 0xeb, 0x6a, 0x15}} -class nsIFactory; +/** + * class GlobalHistory: + * + */ +class MozGlobalHistory: public nsIGlobalHistory, + public nsIBrowserHistory +{ + public: + MozGlobalHistory (); + virtual ~MozGlobalHistory(); + + NS_DECL_ISUPPORTS + NS_DECL_NSIGLOBALHISTORY + NS_DECL_NSIBROWSERHISTORY -extern nsresult NS_NewGlobalHistoryFactory(nsIFactory** aFactory); + private: + EphyHistory *mGlobalHistory; +}; #endif |