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

Side by Side Diff: net/base/forwarding_net_log.h

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Final sync with trunk Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/capturing_net_log.cc ('k') | net/base/forwarding_net_log.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_BASE_FORWARDING_NET_LOG_H_
6 #define NET_BASE_FORWARDING_NET_LOG_H_
7 #pragma once
8
9 #include "base/basictypes.h"
10 #include "net/base/net_log.h"
11
12 class MessageLoop;
13
14 namespace net {
15
16 // ForwardingNetLog is a wrapper that can be called on any thread, and will
17 // forward any calls to NetLog::AddEntry() over to |impl| on the specified
18 // message loop.
19 //
20 // This allows using a non-threadsafe NetLog implementation from another
21 // thread.
22 //
23 // TODO(eroman): Explore making NetLog threadsafe and obviating the need
24 // for this class.
25 class ForwardingNetLog : public NetLog {
26 public:
27 // Both |impl| and |loop| must outlive the lifetime of this instance.
28 // |impl| will be operated only from |loop|.
29 ForwardingNetLog(NetLog* impl, MessageLoop* loop);
30
31 // On destruction any outstanding call to AddEntry() which didn't make
32 // it to |loop| yet will be cancelled.
33 ~ForwardingNetLog();
34
35 // NetLog methods:
36 virtual void AddEntry(EventType type,
37 const base::TimeTicks& time,
38 const Source& source,
39 EventPhase phase,
40 EventParameters* params);
41 virtual uint32 NextID();
42 virtual LogLevel GetLogLevel() const;
43
44 private:
45 class Core;
46 scoped_refptr<Core> core_;
47
48 DISALLOW_COPY_AND_ASSIGN(ForwardingNetLog);
49 };
50
51 } // namespace net
52
53 #endif // NET_BASE_FORWARDING_NET_LOG_H_
54
OLDNEW
« no previous file with comments | « net/base/capturing_net_log.cc ('k') | net/base/forwarding_net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698