| Index: tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py
|
| diff --git a/tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py b/tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py
|
| index a838a015a7b71891b774e414e73c274c86cc864b..b01b08b0f690a70f1c1b65fdbec271614bed0c84 100644
|
| --- a/tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py
|
| +++ b/tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py
|
| @@ -24,9 +24,9 @@ class PossibleCrOSBrowser(possible_browser.PossibleBrowser):
|
| def __repr__(self):
|
| return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type
|
|
|
| - def Create(self):
|
| + def Create(self, extra_browser_args=None):
|
| backend = cros_browser_backend.CrOSBrowserBackend(
|
| - self.browser_type, self._options, *self._args)
|
| + self.browser_type, self._options, extra_browser_args, *self._args)
|
| return browser.Browser(backend)
|
|
|
| def FindAllAvailableBrowsers(options):
|
|
|