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

Unified Diff: common/py_trace_event/py_trace_event/trace_event.py

Issue 2301523007: Add trace events for some of telemetry internal functions (Closed)
Patch Set: Address Petr's nits Created 4 years, 3 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: common/py_trace_event/py_trace_event/trace_event.py
diff --git a/common/py_trace_event/py_trace_event/trace_event.py b/common/py_trace_event/py_trace_event/trace_event.py
index df079cb238a96e9f6639776e907d53c69500de6b..1abbfa7a056d067b3dba1949eadac2329b709387 100644
--- a/common/py_trace_event/py_trace_event/trace_event.py
+++ b/common/py_trace_event/py_trace_event/trace_event.py
@@ -88,6 +88,8 @@ if trace_event_impl:
def trace(name, **kwargs):
return trace_event_impl.trace(name, **kwargs)
+ TracedMetaClass = trace_event_impl.TracedMetaClass
+
def traced(fn):
return trace_event_impl.traced(fn)

Powered by Google App Engine
This is Rietveld 408576698