| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |