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

Unified Diff: tools/telemetry/telemetry/core/web_contents.py

Issue 902893005: Remove usages of Timeline commands in telemetry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/web_contents.py
diff --git a/tools/telemetry/telemetry/core/web_contents.py b/tools/telemetry/telemetry/core/web_contents.py
index 05475c5c6d5e87013b02e53d90b3309531f8b5b2..fe790ad18fcd6b8b13d8b6907df902bcdb4882da 100644
--- a/tools/telemetry/telemetry/core/web_contents.py
+++ b/tools/telemetry/telemetry/core/web_contents.py
@@ -167,12 +167,8 @@ class WebContents(object):
def timeline_model(self):
return self._inspector_backend.timeline_model
- def StartTimelineRecording(self, options=None):
- self._inspector_backend.StartTimelineRecording(options)
-
- @property
- def is_timeline_recording_running(self):
- return self._inspector_backend.is_timeline_recording_running
+ def StartTimelineRecording(self):
+ self._inspector_backend.StartTimelineRecording()
def StopTimelineRecording(self):
self._inspector_backend.StopTimelineRecording()
« no previous file with comments | « tools/telemetry/telemetry/core/tab_unittest.py ('k') | tools/telemetry/telemetry/timeline/recording_options.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698