| 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 import uuid | 4 import uuid |
| 5 import sys | 5 import sys |
| 6 | 6 |
| 7 from py_utils import cloud_storage # pylint: disable=import-error | 7 from py_utils import cloud_storage # pylint: disable=import-error |
| 8 | 8 |
| 9 from telemetry import decorators | 9 from telemetry import decorators |
| 10 from telemetry.internal.backends import app_backend | 10 from telemetry.internal.backends import app_backend |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 @property | 88 @property |
| 89 @decorators.Cache | 89 @decorators.Cache |
| 90 def tab_list_backend(self): | 90 def tab_list_backend(self): |
| 91 return self._tab_list_backend_class(self) | 91 return self._tab_list_backend_class(self) |
| 92 | 92 |
| 93 @property | 93 @property |
| 94 def supports_tracing(self): | 94 def supports_tracing(self): |
| 95 raise NotImplementedError() | 95 raise NotImplementedError() |
| 96 | 96 |
| 97 @property | 97 @property |
| 98 def supports_app_ui_interactions(self): |
| 99 return False |
| 100 |
| 101 @property |
| 98 def supports_system_info(self): | 102 def supports_system_info(self): |
| 99 return False | 103 return False |
| 100 | 104 |
| 101 def StartTracing(self, trace_options, | 105 def StartTracing(self, trace_options, |
| 102 timeout=web_contents.DEFAULT_WEB_CONTENTS_TIMEOUT): | 106 timeout=web_contents.DEFAULT_WEB_CONTENTS_TIMEOUT): |
| 103 raise NotImplementedError() | 107 raise NotImplementedError() |
| 104 | 108 |
| 105 def StopTracing(self): | 109 def StopTracing(self): |
| 106 raise NotImplementedError() | 110 raise NotImplementedError() |
| 107 | 111 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 def supports_cpu_metrics(self): | 165 def supports_cpu_metrics(self): |
| 162 raise NotImplementedError() | 166 raise NotImplementedError() |
| 163 | 167 |
| 164 @property | 168 @property |
| 165 def supports_memory_metrics(self): | 169 def supports_memory_metrics(self): |
| 166 raise NotImplementedError() | 170 raise NotImplementedError() |
| 167 | 171 |
| 168 @property | 172 @property |
| 169 def supports_power_metrics(self): | 173 def supports_power_metrics(self): |
| 170 raise NotImplementedError() | 174 raise NotImplementedError() |
| OLD | NEW |