diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-08 21:34:55 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-08 21:34:55 +0800 |
commit | 9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2 (patch) | |
tree | 361cd3bfb50f7ac8f9bbd0b93711e716dfbdd7f9 /embed/mozilla/EphyHeaderSniffer.h | |
parent | a749eeb5995c534f68a2c38009ca4f325fef2a7c (diff) | |
download | gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar.gz gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar.bz2 gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar.lz gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar.xz gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.tar.zst gsoc2013-epiphany-9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2.zip |
Forward nsIAuthPrompt interface to the single sign-on prompt
2004-05-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/EphyHeaderSniffer.h:
Forward nsIAuthPrompt interface to the single sign-on prompt
Diffstat (limited to 'embed/mozilla/EphyHeaderSniffer.h')
-rw-r--r-- | embed/mozilla/EphyHeaderSniffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/mozilla/EphyHeaderSniffer.h b/embed/mozilla/EphyHeaderSniffer.h index 74c27dbf3..5cef29168 100644 --- a/embed/mozilla/EphyHeaderSniffer.h +++ b/embed/mozilla/EphyHeaderSniffer.h @@ -65,7 +65,7 @@ public: NS_DECL_ISUPPORTS NS_DECL_NSIWEBPROGRESSLISTENER - NS_DECL_NSIAUTHPROMPT + NS_FORWARD_SAFE_NSIAUTHPROMPT(mAuthPrompt) nsresult InitiateDownload (nsILocalFile *aDestFile); @@ -83,6 +83,6 @@ private: nsCOMPtr<nsIInputStream> mPostData; nsCString mContentType; nsCString mContentDisposition; - nsCOMPtr<nsIPromptService> mPrompt; + nsCOMPtr<nsIAuthPrompt> mAuthPrompt; }; |