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

Unified Diff: net/log/net_log_event_type_list.h

Issue 2800023002: Create a separate NetLog source type QUIC_STREAM_FACTORY_JOB (Closed)
Patch Set: address #8 Created 3 years, 8 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 | « no previous file | net/log/net_log_source_type_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/log/net_log_event_type_list.h
diff --git a/net/log/net_log_event_type_list.h b/net/log/net_log_event_type_list.h
index 5e8fe84a73c005098002bf1bea692d8c5e7264d1..c73eefada38f684a351c38adc0c020272430da15 100644
--- a/net/log/net_log_event_type_list.h
+++ b/net/log/net_log_event_type_list.h
@@ -1094,6 +1094,15 @@ EVENT_TYPE(HTTP_STREAM_JOB_INIT_CONNECTION)
// }
EVENT_TYPE(HTTP_STREAM_REQUEST_BOUND_TO_JOB)
+// Identifies the NetLogSource() for the QuicStreamFactory::Job that the
+// HttpStreamFactoryImpl::Job was attached to.
+// The event parameters are:
+// {
+// "source_dependency": <Source identifier for the QuicStreamFactory::Job
+// to which we were attached>,
+// }
+EVENT_TYPE(HTTP_STREAM_JOB_BOUND_TO_QUIC_STREAM_FACTORY_JOB)
+
// Identifies the NetLogSource() for the Request that the Job was attached to.
// The event parameters are:
// {
@@ -1632,6 +1641,27 @@ EVENT_TYPE(HTTP2_PROXY_CLIENT_SESSION)
// }
// ------------------------------------------------------------------------
+// QuicStreamFactory::Job
+// ------------------------------------------------------------------------
+
+// Measures the time taken to execute the QuicStreamFactory::Job.
+// The event parameters are:
+// {
+// "server_id": <The QuicServerId that the Job serves>,
+// }
+EVENT_TYPE(QUIC_STREAM_FACTORY_JOB)
+
+// Identifies the NetLogSource() for the HttpStreamFactoryImpl::Job that the
+// Job was attached to.
+// The event parameters are:
+// {
+// "source_dependency": <Source identifier for the
+// HttpStreamFactoryImpl::Job to which we were
+// attached>,
+// }
+EVENT_TYPE(QUIC_STREAM_FACTORY_JOB_BOUND_TO_HTTP_STREAM_JOB)
+
+// ------------------------------------------------------------------------
// QuicSession
// ------------------------------------------------------------------------
« no previous file with comments | « no previous file | net/log/net_log_source_type_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698