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

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

Issue 640813002: Revert of Move remote platforms creation logic from android_browser_finder to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/telemetry/telemetry/core/platform/device.py
diff --git a/tools/telemetry/telemetry/core/platform/device.py b/tools/telemetry/telemetry/core/platform/device.py
index 091f7a3e2e54c85d3d70d97cbc8682ab9791edef..bb21a1e4530620eb023a99250846930731211ebe 100644
--- a/tools/telemetry/telemetry/core/platform/device.py
+++ b/tools/telemetry/telemetry/core/platform/device.py
@@ -1,6 +1,7 @@
# 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
class Device(object):
@@ -28,5 +29,5 @@
return self._guid
@classmethod
- def GetAllConnectedDevices(cls):
+ def GetAllConnectedDevices(cls, logging=real_logging):
raise NotImplementedError()

Powered by Google App Engine
This is Rietveld 408576698