Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: tools/chrome_remote_control/chrome_remote_control/cros_browser_finder.py

Issue 10965027: Add web page replay to chrome_remote_control. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace CreateForwarder with CreateReplayServer Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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):

Powered by Google App Engine
This is Rietveld 408576698