diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-02-18 02:05:51 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-02-18 02:05:51 +0800 |
commit | 6ae094e511afd9b3fda7041b998299a395cd6f14 (patch) | |
tree | 9abc68a23fba47b422f7fd8703dbf50fcdaf8c18 /embed | |
parent | 52611b4a94324d30335ee85c337cd8661c7cc4d2 (diff) | |
download | gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar.gz gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar.bz2 gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar.lz gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar.xz gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.tar.zst gsoc2013-epiphany-6ae094e511afd9b3fda7041b998299a395cd6f14.zip |
Add stub for displayProtectedAuth
svn path=/trunk/; revision=7957
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/GtkNSSDialogs.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/embed/mozilla/GtkNSSDialogs.cpp b/embed/mozilla/GtkNSSDialogs.cpp index e9eec610f..b28c8b669 100644 --- a/embed/mozilla/GtkNSSDialogs.cpp +++ b/embed/mozilla/GtkNSSDialogs.cpp @@ -1643,6 +1643,16 @@ GtkNSSDialogs::ChooseToken (nsIInterfaceRequestor *aContext, return NS_OK; } +#ifdef HAVE_GECKO_1_9 +/* void displayProtectedAuth (in nsIInterfaceRequestor ctx, in nsIProtectedAuthThread runnable); */ +NS_IMETHODIMP +GtkNSSDialogs::DisplayProtectedAuth (nsIInterfaceRequestor *ctx, + nsIProtectedAuthThread *runnable) +{ + return NS_ERROR_NOT_IMPLEMENTED; +} +#endif /* HAVE_GECKO_1_9 */ + /* nsIDOMCryptoDialogs */ /* Note: this interface sucks! See https://bugzilla.mozilla.org/show_bug.cgi?id=341914 */ |