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

Unified Diff: net/base/capturing_net_log.h

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Requires threadsafe observers 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.h
===================================================================
--- net/base/capturing_net_log.h (revision 65207)
+++ net/base/capturing_net_log.h (working copy)
@@ -8,7 +8,9 @@
#include <vector>
+#include "base/atomicops.h"
#include "base/basictypes.h"
+#include "base/lock.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/time.h"
@@ -55,12 +57,14 @@
virtual LogLevel GetLogLevel() const { return LOG_ALL_BUT_BYTES; }
// Returns the list of all entries in the log.
- const EntryList& entries() const { return entries_; }
+ void get_entries(EntryList* entry_list) const;
eroman 2010/11/16 17:51:14 nit: GetEntries
void Clear();
private:
- uint32 next_id_;
+ // Needs to be "mutable" so can use it in get_entries().
+ mutable Lock lock_;
+ base::subtle::Atomic32 next_id_;
size_t max_num_entries_;
EntryList entries_;
@@ -74,7 +78,8 @@
// bound() method.
class CapturingBoundNetLog {
public:
- CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log);
+ CapturingBoundNetLog(const NetLog::Source& source,
+ scoped_refptr<CapturingNetLog>& net_log);
explicit CapturingBoundNetLog(size_t max_num_entries);
@@ -86,9 +91,7 @@
}
// Returns the list of all entries in the log.
- const CapturingNetLog::EntryList& entries() const {
- return capturing_net_log_->entries();
- }
+ void get_entries(CapturingNetLog::EntryList* entry_list) const;
eroman 2010/11/16 17:51:14 GetEntries
void Clear();

Powered by Google App Engine
This is Rietveld 408576698