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_++; |
} |