diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-03-10 23:50:36 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-03-10 23:50:36 +0800 |
commit | f8cd25beeee86910f3b462151ae524077306c832 (patch) | |
tree | 4add444467df4382ba482965e940210bb8255fc9 /embed/mozilla | |
parent | 7863a1874844bb34f3e11f68f269c87ee03562ae (diff) | |
download | gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar.gz gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar.bz2 gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar.lz gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar.xz gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.tar.zst gsoc2013-epiphany-f8cd25beeee86910f3b462151ae524077306c832.zip |
Remove the wallet hack; it appears not to work correctly using mozilla 1.7
2005-03-10 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/mozilla/MozillaPrivate.cpp:
* embed/mozilla/MozillaPrivate.h:
* embed/mozilla/mozilla-embed-single.cpp:
Remove the wallet hack; it appears not to work correctly
using mozilla 1.7 (work on trunk; but that's dead).
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/MozillaPrivate.cpp | 61 | ||||
-rw-r--r-- | embed/mozilla/MozillaPrivate.h | 4 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 2 |
3 files changed, 0 insertions, 67 deletions
diff --git a/embed/mozilla/MozillaPrivate.cpp b/embed/mozilla/MozillaPrivate.cpp index 37860a502..23e8a391b 100644 --- a/embed/mozilla/MozillaPrivate.cpp +++ b/embed/mozilla/MozillaPrivate.cpp @@ -31,12 +31,6 @@ #include <nsISupportsPrimitives.h> #include <nsPromiseFlatString.h> -#ifdef HAVE_NSIWALLETSERVICE_H -#include <nsIPrefBranch.h> -#include <nsIDOMWindowInternal.h> -#include <wallet/nsIWalletService.h> -#endif - #include "ephy-debug.h" /* IMPORTANT. Put only code that use internal mozilla strings (nsAutoString for @@ -83,58 +77,3 @@ MozillaPrivate::GetPrinterList () return g_list_reverse (printers); } - -#ifdef HAVE_NSIWALLETSERVICE_H - -class DummyWindow : public nsIDOMWindowInternal -{ -public: - DummyWindow () { LOG ("DummyWindow ctor"); }; - virtual ~DummyWindow () { LOG ("DummyWindow dtor"); }; - - NS_DECL_ISUPPORTS - NS_FORWARD_SAFE_NSIDOMWINDOW(mFake); - NS_FORWARD_SAFE_NSIDOMWINDOW2(mFake2); - NS_FORWARD_SAFE_NSIDOMWINDOWINTERNAL(mFakeInt); -private: - nsCOMPtr<nsIDOMWindow> mFake; - nsCOMPtr<nsIDOMWindow2> mFake2; - nsCOMPtr<nsIDOMWindowInternal> mFakeInt; -}; - -NS_IMPL_ISUPPORTS3(DummyWindow, nsIDOMWindow, nsIDOMWindow2, nsIDOMWindowInternal) - -#endif /* HAVE_NSIWALLETSERVICE_H */ - -void -MozillaPrivate::SecureWallet (nsIPrefBranch *pref) -{ -#ifdef HAVE_NSIWALLETSERVICE_H - nsresult rv; - PRBool isEnabled = PR_FALSE; - rv = pref->GetBoolPref ("wallet.crypto", &isEnabled); - if (NS_SUCCEEDED (rv) && isEnabled) return; - - nsCOMPtr<nsIWalletService> wallet (do_GetService (NS_WALLETSERVICE_CONTRACTID)); - NS_ENSURE_TRUE (wallet, ); - - /* We cannot set nsnull as callback data here, since that will crash - * in case wallet needs to get the prompter from it (missing null check - * in wallet code). Therefore we create a dummy impl which will just - * always fail. There is no way to safely set nsnull after we're done, - * so we'll just leak our dummy window. - */ - DummyWindow *win = new DummyWindow(); - if (!win) return; - - nsCOMPtr<nsIDOMWindowInternal> domWinInt (do_QueryInterface (win)); - NS_ENSURE_TRUE (domWinInt, ); - - /* WALLET_InitReencryptCallback doesN'T addref but stores the pointer! */ - NS_ADDREF (win); - wallet->WALLET_InitReencryptCallback (domWinInt); - - /* Now set the pref. This will encrypt the existing data. */ - pref->SetBoolPref ("wallet.crypto", PR_TRUE); -#endif /* HAVE_NSIWALLETSERVICE_H */ -} diff --git a/embed/mozilla/MozillaPrivate.h b/embed/mozilla/MozillaPrivate.h index 73ef25253..5c7c0a8d6 100644 --- a/embed/mozilla/MozillaPrivate.h +++ b/embed/mozilla/MozillaPrivate.h @@ -20,11 +20,7 @@ #include <glib.h> -class nsIPrefBranch; - namespace MozillaPrivate { GList *GetPrinterList (); - - void SecureWallet (nsIPrefBranch *pref); } diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 4d34511bf..d6bfbb061 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -245,8 +245,6 @@ mozilla_set_default_prefs (MozillaEmbedSingle *mes) pref->SetBoolPref("network.protocol-handler.external.ftp", have_gnome_url_handler ("ftp")); - MozillaPrivate::SecureWallet (pref); - return TRUE; } |