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

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

Issue 145923002: Added support to listen on Network.responseReceived and expose that through tab.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync to HEAD to get latest timeline changes. Created 6 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
« no previous file with comments | « tools/telemetry/telemetry/core/timeline/recording_options.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dd04e3ce0a9fee4c3be53b8b9fbbe959915238fc..550103444d234706540362a30102980eef562106 100644
--- a/tools/telemetry/telemetry/core/web_contents.py
+++ b/tools/telemetry/telemetry/core/web_contents.py
@@ -79,8 +79,8 @@ class WebContents(object):
def timeline_model(self):
return self._inspector_backend.timeline_model
- def StartTimelineRecording(self):
- self._inspector_backend.StartTimelineRecording()
+ def StartTimelineRecording(self, options=None):
+ self._inspector_backend.StartTimelineRecording(options)
def StopTimelineRecording(self):
self._inspector_backend.StopTimelineRecording()
« no previous file with comments | « tools/telemetry/telemetry/core/timeline/recording_options.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698