diff options
Diffstat (limited to 'xpcom/system')
-rw-r--r-- | xpcom/system/nsICrashReporter.idl | 2 | ||||
-rw-r--r-- | xpcom/system/nsIDeviceSensors.idl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xpcom/system/nsICrashReporter.idl b/xpcom/system/nsICrashReporter.idl index 6fd0967e75..dbbc36f0e0 100644 --- a/xpcom/system/nsICrashReporter.idl +++ b/xpcom/system/nsICrashReporter.idl @@ -27,7 +27,7 @@ interface nsICrashReporter : nsISupports * because the JS engine relies on proper exception handler chaining. */ [noscript] - void setEnabled(in bool enabled); + void setEnabled(in boolean enabled); /** * Get or set the URL to which crash reports will be submitted. diff --git a/xpcom/system/nsIDeviceSensors.idl b/xpcom/system/nsIDeviceSensors.idl index a173421ebf..488e9428a8 100644 --- a/xpcom/system/nsIDeviceSensors.idl +++ b/xpcom/system/nsIDeviceSensors.idl @@ -39,7 +39,7 @@ interface nsIDeviceSensors : nsISupports /** * Returns true if the given window has any listeners of the given type */ - bool hasWindowListener(in unsigned long aType, in nsIDOMWindow aWindow); + boolean hasWindowListener(in unsigned long aType, in nsIDOMWindow aWindow); // Holds pointers, not AddRef objects -- it is up to the caller // to call RemoveWindowListener before the window is deleted. |