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

Unified Diff: tools/telemetry/telemetry/core/platform/cros_device.py

Issue 522553002: Move remote platforms creation logic from android_browser_finder to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android_browser_finder_unittest Created 6 years, 3 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/telemetry/telemetry/core/platform/cros_device.py
diff --git a/tools/telemetry/telemetry/core/platform/cros_device.py b/tools/telemetry/telemetry/core/platform/cros_device.py
index 9e5d41735bc3ae2237b97d5ef9633ab1e259f01c..3632f3c95dda52af76f86d9c9ec1ce4ef38ca81a 100644
--- a/tools/telemetry/telemetry/core/platform/cros_device.py
+++ b/tools/telemetry/telemetry/core/platform/cros_device.py
@@ -1,8 +1,6 @@
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import logging as real_logging
-
from telemetry.core.platform import device
@@ -16,7 +14,7 @@ class CrOSDevice(device.Device):
self._ssh_identity = ssh_identity
@classmethod
- def GetAllConnectedDevices(cls, logging=real_logging):
+ def GetAllConnectedDevices(cls):
return []
@property

Powered by Google App Engine
This is Rietveld 408576698