Chromium Code Reviews

Unified Diff: net/base/net_log.cc

Issue 1696005: Add net log entries that summarize transmit and receive byte counts. (Closed)
Patch Set: More tests and address comments Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/base/net_log.h ('k') | net/base/net_log_event_type_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_log.cc
diff --git a/net/base/net_log.cc b/net/base/net_log.cc
index 1ebdfdb461ee64f79aaeb2a8445a49aa2df45918..c9ef38018898e17cc4ec0b0f9568f693e13022ce 100644
--- a/net/base/net_log.cc
+++ b/net/base/net_log.cc
@@ -86,6 +86,13 @@ void BoundNetLog::BeginEventWithString(NetLog::EventType event_type,
BeginEventWithParameters(event_type, params);
}
+void BoundNetLog::BeginEventWithInteger(NetLog::EventType event_type,
+ int integer) const {
+ scoped_refptr<NetLog::EventParameters> params =
+ new NetLogIntegerParameter(integer);
+ BeginEventWithParameters(event_type, params);
+}
+
void BoundNetLog::EndEvent(NetLog::EventType event_type) const {
EndEventWithParameters(event_type, NULL);
}
@@ -153,7 +160,7 @@ void CapturingNetLog::AddEntry(EventType type,
entries_.push_back(entry);
}
-int CapturingNetLog::NextID() {
+uint32 CapturingNetLog::NextID() {
return next_id_++;
}
« no previous file with comments | « net/base/net_log.h ('k') | net/base/net_log_event_type_list.h » ('j') | no next file with comments »

Powered by Google App Engine