Allow to pass Android intent arguments to Gecko.

This commit is contained in:
Nick Alexander 2019-02-20 10:05:49 -08:00
Родитель d215f629b6
Коммит 771b6ee363
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1C0E512189F400BE
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -379,6 +379,19 @@ class Options {
this.android_.androidPackage = pkg;
return this;
}
/**
* Specify additional command line arguments that should be used
* when starting the Android intent. See
* https://developer.android.com/studio/command-line/adb#IntentSpec.
*
* @param {...(string|!Array<string>)} args The arguments to include.
* @return {!Options} A self reference.
*/
androidAddIntentArguments(...args) {
this.android_.androidIntentArguments = (this.android_.androidIntentArguments || []).concat(...args);
return this;
}
}