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

Unified Diff: net/base/capturing_net_log.cc

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Response to comments (And net-internals refresh fix) Created 10 years, 1 month 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: net/base/capturing_net_log.cc
===================================================================
--- net/base/capturing_net_log.cc (revision 65207)
+++ net/base/capturing_net_log.cc (working copy)
@@ -28,21 +28,29 @@
const Source& source,
EventPhase phase,
EventParameters* extra_parameters) {
+ AutoLock lock(lock_);
Entry entry(type, time, source, phase, extra_parameters);
if (entries_.size() + 1 < max_num_entries_)
entries_.push_back(entry);
}
uint32 CapturingNetLog::NextID() {
- return next_id_++;
+ return base::subtle::NoBarrier_AtomicIncrement(&next_id_, 1)-1;
eroman 2010/11/18 18:04:03 I suggest doing what you did in the other file for
}
+void CapturingNetLog::GetEntries(EntryList* entry_list) const {
+ AutoLock lock(lock_);
+ *entry_list = entries_;
+}
+
void CapturingNetLog::Clear() {
+ AutoLock lock(lock_);
entries_.clear();
}
-CapturingBoundNetLog::CapturingBoundNetLog(const NetLog::Source& source,
- CapturingNetLog* net_log)
+CapturingBoundNetLog::CapturingBoundNetLog(
+ const NetLog::Source& source,
+ scoped_refptr<CapturingNetLog>& net_log)
: source_(source), capturing_net_log_(net_log) {
}
@@ -51,13 +59,20 @@
CapturingBoundNetLog::~CapturingBoundNetLog() {}
+void CapturingBoundNetLog::GetEntries(
+ CapturingNetLog::EntryList* entry_list) const {
+ capturing_net_log_->GetEntries(entry_list);
+}
+
void CapturingBoundNetLog::Clear() {
capturing_net_log_->Clear();
}
void CapturingBoundNetLog::AppendTo(const BoundNetLog& net_log) const {
eroman 2010/11/18 18:04:03 See earlier comment -- i don't think this is neede
- for (size_t i = 0; i < entries().size(); ++i) {
- const CapturingNetLog::Entry& entry = entries()[i];
+ CapturingNetLog::EntryList entries;
+ GetEntries(&entries);
+ for (size_t i = 0; i < entries.size(); ++i) {
+ const CapturingNetLog::Entry& entry = entries[i];
net_log.AddEntryWithTime(entry.type, entry.time, entry.phase,
entry.extra_parameters);
}

Powered by Google App Engine
This is Rietveld 408576698