document missing method parameters

This commit is contained in:
Zeke Sikelianos 2016-08-25 10:52:19 -07:00
parent 97a004a357
commit 28d42ba35b
7 changed files with 64 additions and 31 deletions

View file

@ -684,6 +684,9 @@ details.
### `app.commandLine.appendSwitch(switch[, value])`
* `switch` String - A command-line switch
* `value` String (optional) - A value for the given switch
Append a switch (with optional `value`) to Chromium's command line.
**Note:** This will not affect `process.argv`, and is mainly used by developers
@ -691,6 +694,8 @@ to control some low-level Chromium behaviors.
### `app.commandLine.appendArgument(value)`
* `value` String - The argument to append to the command line
Append an argument to Chromium's command line. The argument will be quoted
correctly.