Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: gecko-sdk/include/nsISecurityWarningDialogs.h

Issue 20346: Version 1.8 of gecko-sdk. Downloaded from here:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gecko-sdk/include/nsIScriptableInputStream.h ('k') | gecko-sdk/include/nsISelection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gecko-sdk/include/nsISecurityWarningDialogs.h
===================================================================
--- gecko-sdk/include/nsISecurityWarningDialogs.h (revision 0)
+++ gecko-sdk/include/nsISecurityWarningDialogs.h (revision 0)
@@ -0,0 +1,215 @@
+/*
+ * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/security/manager/boot/public/nsISecurityWarningDialogs.idl
+ */
+
+#ifndef __gen_nsISecurityWarningDialogs_h__
+#define __gen_nsISecurityWarningDialogs_h__
+
+
+#ifndef __gen_nsISupports_h__
+#include "nsISupports.h"
+#endif
+
+/* For IDL files that don't want to include root IDL files. */
+#ifndef NS_NO_VTABLE
+#define NS_NO_VTABLE
+#endif
+class nsIInterfaceRequestor; /* forward declaration */
+
+
+/* starting interface: nsISecurityWarningDialogs */
+#define NS_ISECURITYWARNINGDIALOGS_IID_STR "1c399d06-1dd2-11b2-bc58-c87cbcacdb78"
+
+#define NS_ISECURITYWARNINGDIALOGS_IID \
+ {0x1c399d06, 0x1dd2, 0x11b2, \
+ { 0xbc, 0x58, 0xc8, 0x7c, 0xbc, 0xac, 0xdb, 0x78 }}
+
+/**
+ * Functions that display warnings for transitions between secure
+ * and insecure pages, posts to insecure servers etc.
+ *
+ * @status FROZEN
+ */
+class NS_NO_VTABLE nsISecurityWarningDialogs : public nsISupports {
+ public:
+
+ NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISECURITYWARNINGDIALOGS_IID)
+
+ /**
+ * Inform the user that a transition
+ * from an insecure page
+ * to a secure page
+ * is happening.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user confirms to continue
+ */
+ /* boolean confirmEnteringSecure (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmEnteringSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+ /**
+ * Inform the user that a transition
+ * from an insecure page
+ * or from a secure page
+ * to a weak security page
+ * is happening.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user confirms to continue
+ */
+ /* boolean confirmEnteringWeak (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmEnteringWeak(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+ /**
+ * Inform the user that a transition
+ * from a secure page
+ * to an insecure page
+ * is happening.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user confirms to continue
+ */
+ /* boolean confirmLeavingSecure (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmLeavingSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+ /**
+ * Inform the user the currently displayed page
+ * contains some secure and some insecure page components.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user decides to show insecure objects.
+ */
+ /* boolean confirmMixedMode (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmMixedMode(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+ /**
+ * Inform the user that information is being submitted
+ * to an insecure page.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user confirms to submit.
+ */
+ /* boolean confirmPostToInsecure (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+ /**
+ * Inform the user: Although the currently displayed
+ * page was loaded using a secure connection, and the UI probably
+ * currently indicates a secure page,
+ * that information is being submitted to an insecure page.
+ *
+ * @param ctx A user interface context.
+ *
+ * @return true if the user confirms to submit.
+ */
+ /* boolean confirmPostToInsecureFromSecure (in nsIInterfaceRequestor ctx); */
+ NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;
+
+};
+
+/* Use this macro when declaring classes that implement this interface. */
+#define NS_DECL_NSISECURITYWARNINGDIALOGS \
+ NS_IMETHOD ConfirmEnteringSecure(nsIInterfaceRequestor *ctx, PRBool *_retval); \
+ NS_IMETHOD ConfirmEnteringWeak(nsIInterfaceRequestor *ctx, PRBool *_retval); \
+ NS_IMETHOD ConfirmLeavingSecure(nsIInterfaceRequestor *ctx, PRBool *_retval); \
+ NS_IMETHOD ConfirmMixedMode(nsIInterfaceRequestor *ctx, PRBool *_retval); \
+ NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval); \
+ NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval);
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object. */
+#define NS_FORWARD_NSISECURITYWARNINGDIALOGS(_to) \
+ NS_IMETHOD ConfirmEnteringSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmEnteringSecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmEnteringWeak(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmEnteringWeak(ctx, _retval); } \
+ NS_IMETHOD ConfirmLeavingSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmLeavingSecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmMixedMode(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmMixedMode(ctx, _retval); } \
+ NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmPostToInsecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmPostToInsecureFromSecure(ctx, _retval); }
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
+#define NS_FORWARD_SAFE_NSISECURITYWARNINGDIALOGS(_to) \
+ NS_IMETHOD ConfirmEnteringSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmEnteringSecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmEnteringWeak(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmEnteringWeak(ctx, _retval); } \
+ NS_IMETHOD ConfirmLeavingSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmLeavingSecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmMixedMode(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmMixedMode(ctx, _retval); } \
+ NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmPostToInsecure(ctx, _retval); } \
+ NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmPostToInsecureFromSecure(ctx, _retval); }
+
+#if 0
+/* Use the code below as a template for the implementation class for this interface. */
+
+/* Header file */
+class nsSecurityWarningDialogs : public nsISecurityWarningDialogs
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSISECURITYWARNINGDIALOGS
+
+ nsSecurityWarningDialogs();
+
+private:
+ ~nsSecurityWarningDialogs();
+
+protected:
+ /* additional members */
+};
+
+/* Implementation file */
+NS_IMPL_ISUPPORTS1(nsSecurityWarningDialogs, nsISecurityWarningDialogs)
+
+nsSecurityWarningDialogs::nsSecurityWarningDialogs()
+{
+ /* member initializers and constructor code */
+}
+
+nsSecurityWarningDialogs::~nsSecurityWarningDialogs()
+{
+ /* destructor code */
+}
+
+/* boolean confirmEnteringSecure (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmEnteringSecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* boolean confirmEnteringWeak (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmEnteringWeak(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* boolean confirmLeavingSecure (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmLeavingSecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* boolean confirmMixedMode (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmMixedMode(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* boolean confirmPostToInsecure (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* boolean confirmPostToInsecureFromSecure (in nsIInterfaceRequestor ctx); */
+NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* End of implementation class template. */
+#endif
+
+#define NS_SECURITYWARNINGDIALOGS_CONTRACTID "@mozilla.org/nsSecurityWarningDialogs;1"
+
+#endif /* __gen_nsISecurityWarningDialogs_h__ */
Property changes on: gecko-sdk\include\nsISecurityWarningDialogs.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « gecko-sdk/include/nsIScriptableInputStream.h ('k') | gecko-sdk/include/nsISelection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698