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

Side by Side Diff: tools/telemetry/telemetry/core/platform/device.py

Issue 760653002: Telemetry --device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 class Device(object): 6 class Device(object):
7 """ A base class of devices. 7 """ A base class of devices.
8 A device instance contains all the necessary information for constructing 8 A device instance contains all the necessary information for constructing
9 a platform backend object for remote platforms. 9 a platform backend object for remote platforms.
10 10
(...skipping 12 matching lines...) Expand all
23 def name(self): 23 def name(self):
24 return self._name 24 return self._name
25 25
26 @property 26 @property
27 def guid(self): 27 def guid(self):
28 return self._guid 28 return self._guid
29 29
30 @classmethod 30 @classmethod
31 def GetAllConnectedDevices(cls): 31 def GetAllConnectedDevices(cls):
32 raise NotImplementedError() 32 raise NotImplementedError()
33
34 def FindAllAvailableBrowsers(self, options):
nednguyen 2014/12/04 02:48:34 Why is this is a Device method? Device represents
35 raise NotImplementedError()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698