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 6426e0ae7071b7795e63f4f9ba582c39b269856f..5d45cdae23a59b6b7fc1ae4538ce7e6da91dfaa5 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 |
@@ -6,6 +6,7 @@ |
import logging |
from chrome_remote_control import browser |
+from chrome_remote_control import platform |
from chrome_remote_control import possible_browser |
from chrome_remote_control import cros_browser_backend |
from chrome_remote_control import cros_interface |
@@ -27,7 +28,7 @@ class PossibleCrOSBrowser(possible_browser.PossibleBrowser): |
def Create(self): |
backend = cros_browser_backend.CrOSBrowserBackend( |
self.browser_type, self._options, *self._args) |
- return browser.Browser(backend) |
+ return browser.Browser(backend, platform.Platform()) |
def FindAllAvailableBrowsers(options): |
"""Finds all the desktop browsers available on this machine.""" |