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

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

Issue 132433004: Collecting LatencyInfo in telemetry (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 11 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/browser.py
diff --git a/tools/telemetry/telemetry/core/browser.py b/tools/telemetry/telemetry/core/browser.py
index 3900c45f09f1cd2360e75b16b2bb99f45f5ece03..f3c6c7f1d4a2077af628c7a7b6e605e14a25660d 100644
--- a/tools/telemetry/telemetry/core/browser.py
+++ b/tools/telemetry/telemetry/core/browser.py
@@ -85,6 +85,10 @@ class Browser(object):
def supports_tracing(self):
return self._browser_backend.supports_tracing
+ @property
nduca 2014/01/13 18:49:32 we never expose the browser pid. there are good re
Yufeng Shen (Slow to review) 2014/01/14 00:05:47 Talked to Eric and he suggests to search the desir
+ def browser_pid(self):
+ return self._browser_backend.pid
+
def is_profiler_active(self, profiler_name):
return profiler_name in [profiler.name() for
profiler in self._active_profilers]

Powered by Google App Engine
This is Rietveld 408576698