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

Unified Diff: gecko-sdk/include/nsIDebug.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/nsIDOMWindowUtils.h ('k') | gecko-sdk/include/nsIDirectoryService.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gecko-sdk/include/nsIDebug.h
===================================================================
--- gecko-sdk/include/nsIDebug.h (revision 0)
+++ gecko-sdk/include/nsIDebug.h (revision 0)
@@ -0,0 +1,133 @@
+/*
+ * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/xpcom/base/nsIDebug.idl
+ */
+
+#ifndef __gen_nsIDebug_h__
+#define __gen_nsIDebug_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
+
+/* starting interface: nsIDebug */
+#define NS_IDEBUG_IID_STR "3bf0c3d7-3bd9-4cf2-a971-33572c503e1e"
+
+#define NS_IDEBUG_IID \
+ {0x3bf0c3d7, 0x3bd9, 0x4cf2, \
+ { 0xa9, 0x71, 0x33, 0x57, 0x2c, 0x50, 0x3e, 0x1e }}
+
+/**
+ * nsIDebug is an interface between XPCOM Glue and XPCOM. Users should access
+ * the nsIDebug interface through the static class nsDebug.
+ * @see nsDebug.h
+ *
+ * @status UNDER_REVIEW
+ *
+ */
+class NS_NO_VTABLE nsIDebug : public nsISupports {
+ public:
+
+ NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDEBUG_IID)
+
+ /* void assertion (in string aStr, in string aExpr, in string aFile, in long aLine); */
+ NS_IMETHOD Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine) = 0;
+
+ /* void warning (in string aStr, in string aFile, in long aLine); */
+ NS_IMETHOD Warning(const char *aStr, const char *aFile, PRInt32 aLine) = 0;
+
+ /* void break (in string aFile, in long aLine); */
+ NS_IMETHOD Break(const char *aFile, PRInt32 aLine) = 0;
+
+ /* void abort (in string aFile, in long aLine); */
+ NS_IMETHOD Abort(const char *aFile, PRInt32 aLine) = 0;
+
+};
+
+/* Use this macro when declaring classes that implement this interface. */
+#define NS_DECL_NSIDEBUG \
+ NS_IMETHOD Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine); \
+ NS_IMETHOD Warning(const char *aStr, const char *aFile, PRInt32 aLine); \
+ NS_IMETHOD Break(const char *aFile, PRInt32 aLine); \
+ NS_IMETHOD Abort(const char *aFile, PRInt32 aLine);
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object. */
+#define NS_FORWARD_NSIDEBUG(_to) \
+ NS_IMETHOD Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine) { return _to Assertion(aStr, aExpr, aFile, aLine); } \
+ NS_IMETHOD Warning(const char *aStr, const char *aFile, PRInt32 aLine) { return _to Warning(aStr, aFile, aLine); } \
+ NS_IMETHOD Break(const char *aFile, PRInt32 aLine) { return _to Break(aFile, aLine); } \
+ NS_IMETHOD Abort(const char *aFile, PRInt32 aLine) { return _to Abort(aFile, aLine); }
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
+#define NS_FORWARD_SAFE_NSIDEBUG(_to) \
+ NS_IMETHOD Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->Assertion(aStr, aExpr, aFile, aLine); } \
+ NS_IMETHOD Warning(const char *aStr, const char *aFile, PRInt32 aLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->Warning(aStr, aFile, aLine); } \
+ NS_IMETHOD Break(const char *aFile, PRInt32 aLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->Break(aFile, aLine); } \
+ NS_IMETHOD Abort(const char *aFile, PRInt32 aLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->Abort(aFile, aLine); }
+
+#if 0
+/* Use the code below as a template for the implementation class for this interface. */
+
+/* Header file */
+class nsDebug : public nsIDebug
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIDEBUG
+
+ nsDebug();
+
+private:
+ ~nsDebug();
+
+protected:
+ /* additional members */
+};
+
+/* Implementation file */
+NS_IMPL_ISUPPORTS1(nsDebug, nsIDebug)
+
+nsDebug::nsDebug()
+{
+ /* member initializers and constructor code */
+}
+
+nsDebug::~nsDebug()
+{
+ /* destructor code */
+}
+
+/* void assertion (in string aStr, in string aExpr, in string aFile, in long aLine); */
+NS_IMETHODIMP nsDebug::Assertion(const char *aStr, const char *aExpr, const char *aFile, PRInt32 aLine)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void warning (in string aStr, in string aFile, in long aLine); */
+NS_IMETHODIMP nsDebug::Warning(const char *aStr, const char *aFile, PRInt32 aLine)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void break (in string aFile, in long aLine); */
+NS_IMETHODIMP nsDebug::Break(const char *aFile, PRInt32 aLine)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void abort (in string aFile, in long aLine); */
+NS_IMETHODIMP nsDebug::Abort(const char *aFile, PRInt32 aLine)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* End of implementation class template. */
+#endif
+
+
+#endif /* __gen_nsIDebug_h__ */
Property changes on: gecko-sdk\include\nsIDebug.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « gecko-sdk/include/nsIDOMWindowUtils.h ('k') | gecko-sdk/include/nsIDirectoryService.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698