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

Side by Side Diff: tools/telemetry/telemetry/core/backends/browser_backend.py

Issue 445793004: Fix import order with isort tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 from telemetry import decorators 5 from telemetry import decorators
6
7 from telemetry.core import web_contents 6 from telemetry.core import web_contents
8 from telemetry.core.forwarders import do_nothing_forwarder 7 from telemetry.core.forwarders import do_nothing_forwarder
9 8
10 9
11 class ExtensionsNotSupportedException(Exception): 10 class ExtensionsNotSupportedException(Exception):
12 pass 11 pass
13 12
14 13
15 class BrowserBackend(object): 14 class BrowserBackend(object):
16 """A base class for browser backends.""" 15 """A base class for browser backends."""
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 raise NotImplementedError() 89 raise NotImplementedError()
91 90
92 def GetStandardOutput(self): 91 def GetStandardOutput(self):
93 raise NotImplementedError() 92 raise NotImplementedError()
94 93
95 def GetStackTrace(self): 94 def GetStackTrace(self):
96 raise NotImplementedError() 95 raise NotImplementedError()
97 96
98 def GetSystemInfo(self): 97 def GetSystemInfo(self):
99 raise NotImplementedError() 98 raise NotImplementedError()
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/benchmark.py ('k') | tools/telemetry/telemetry/core/backends/chrome/android_browser_finder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698