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

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

Issue 11187036: Android: start upstreaming some of our perf tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert adb_commands 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 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."""

Powered by Google App Engine
This is Rietveld 408576698