forked from mirrors/gecko-dev
Bug 1871991 - Required arguments after optional are not supported r=jesup
I reviewed all js callsites, and they always use all arguments, so this should be no-op. Differential Revision: https://phabricator.services.mozilla.com/D197300
This commit is contained in:
parent
5c9731796e
commit
11996c6f38
3 changed files with 7 additions and 7 deletions
|
|
@ -119,13 +119,13 @@ interface mozIStorageService : nsISupports {
|
||||||
* string may be:
|
* string may be:
|
||||||
* - "memory" to open an in-memory database.
|
* - "memory" to open an in-memory database.
|
||||||
*
|
*
|
||||||
* @param [optional] aOpenFlags
|
* @param aOpenFlags
|
||||||
* A set of flags to open the database with optional features.
|
* A set of flags to open the database with optional features.
|
||||||
* Currently supports OPEN_SHARED, OPEN_READONLY and
|
* Currently supports OPEN_SHARED, OPEN_READONLY and
|
||||||
* OPEN_IGNORE_LOCKING_MODE flags.
|
* OPEN_IGNORE_LOCKING_MODE flags.
|
||||||
* For full details, please refer to the documentation of the flags.
|
* For full details, please refer to the documentation of the flags.
|
||||||
*
|
*
|
||||||
* @param [optional] aConnectionFlags
|
* @param aConnectionFlags
|
||||||
* A set of flags to enable optional features for the returned
|
* A set of flags to enable optional features for the returned
|
||||||
* asynchronous connection object.
|
* asynchronous connection object.
|
||||||
* Currently supports CONNECTION_INTERRUPTIBLE flag.
|
* Currently supports CONNECTION_INTERRUPTIBLE flag.
|
||||||
|
|
@ -146,8 +146,8 @@ interface mozIStorageService : nsISupports {
|
||||||
* main thread.
|
* main thread.
|
||||||
*/
|
*/
|
||||||
void openAsyncDatabase(in nsIVariant aDatabaseStore,
|
void openAsyncDatabase(in nsIVariant aDatabaseStore,
|
||||||
[optional] in unsigned long aOpenFlags,
|
in unsigned long aOpenFlags,
|
||||||
[optional] in unsigned long aConnectionFlags,
|
in unsigned long aConnectionFlags,
|
||||||
in mozIStorageCompletionCallback aCallback);
|
in mozIStorageCompletionCallback aCallback);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -331,8 +331,8 @@ interface nsIAlertsIconData : nsISupports
|
||||||
* |aIconSize| will be zero.
|
* |aIconSize| will be zero.
|
||||||
*/
|
*/
|
||||||
void showAlertWithIconData(in nsIAlertNotification aAlert,
|
void showAlertWithIconData(in nsIAlertNotification aAlert,
|
||||||
[optional] in nsIObserver aAlertListener,
|
in nsIObserver aAlertListener,
|
||||||
[optional] in uint32_t aIconSize,
|
in uint32_t aIconSize,
|
||||||
[const, array, size_is(aIconSize)] in uint8_t
|
[const, array, size_is(aIconSize)] in uint8_t
|
||||||
aIconData);
|
aIconData);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@ interface nsITransfer : nsIWebProgressListener2 {
|
||||||
in boolean aIsPrivate,
|
in boolean aIsPrivate,
|
||||||
in long aDownloadClassification,
|
in long aDownloadClassification,
|
||||||
in nsIReferrerInfo aReferrerInfo,
|
in nsIReferrerInfo aReferrerInfo,
|
||||||
[optional] in boolean aOpenDownloadsListOnStart,
|
in boolean aOpenDownloadsListOnStart,
|
||||||
in BrowsingContext aBrowsingContext,
|
in BrowsingContext aBrowsingContext,
|
||||||
in boolean aHandleInternally,
|
in boolean aHandleInternally,
|
||||||
in nsIHttpChannel aHttpChannel);
|
in nsIHttpChannel aHttpChannel);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue