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 import weakref | 5 import weakref |
6 | 6 |
7 from telemetry.core.platform import profiling_controller_backend | 7 from telemetry.core.platform import profiling_controller_backend |
8 from telemetry.core.platform import tracing_controller_backend | 8 from telemetry.core.platform import tracing_controller_backend |
9 | 9 |
10 | 10 |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 return False | 200 return False |
201 | 201 |
202 def CanMeasurePerApplicationPower(self): | 202 def CanMeasurePerApplicationPower(self): |
203 return False | 203 return False |
204 | 204 |
205 def StartMonitoringPower(self, browser): | 205 def StartMonitoringPower(self, browser): |
206 raise NotImplementedError() | 206 raise NotImplementedError() |
207 | 207 |
208 def StopMonitoringPower(self): | 208 def StopMonitoringPower(self): |
209 raise NotImplementedError() | 209 raise NotImplementedError() |
210 | |
211 def ReadMsr(self, msr_number): | |
tonyg
2014/09/18 00:21:46
I think we should add a comment that defines MSR.
dtu
2014/09/18 05:22:29
Done.
| |
212 raise NotImplementedError() | |
OLD | NEW |