OLD | NEW |
(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 |
| 8 #include "base/basictypes.h" |
| 9 #include "net/base/net_log.h" |
| 10 |
| 11 class MessageLoop; |
| 12 |
| 13 namespace net { |
| 14 |
| 15 // ForwardingNetLog is a wrapper that can be called on any thread, and will |
| 16 // forward any calls to NetLog::AddEntry() over to |impl| on the specified |
| 17 // message loop. |
| 18 // |
| 19 // This allows using a non-threadsafe NetLog implementation from another |
| 20 // thread. |
| 21 // |
| 22 // TODO(eroman): Explore making NetLog threadsafe and obviating the need |
| 23 // for this class. |
| 24 class ForwardingNetLog : public NetLog { |
| 25 public: |
| 26 // Both |impl| and |loop| must outlive the lifetime of this instance. |
| 27 // |impl| will be operated only from |loop|. |
| 28 ForwardingNetLog(NetLog* impl, MessageLoop* loop); |
| 29 |
| 30 // On destruction any outstanding call to AddEntry() which didn't make |
| 31 // it to |loop| yet will be cancelled. |
| 32 ~ForwardingNetLog(); |
| 33 |
| 34 // NetLog methods: |
| 35 virtual void AddEntry(EventType type, |
| 36 const base::TimeTicks& time, |
| 37 const Source& source, |
| 38 EventPhase phase, |
| 39 EventParameters* params); |
| 40 virtual uint32 NextID(); |
| 41 virtual bool HasListener() const; |
| 42 |
| 43 private: |
| 44 class Core; |
| 45 scoped_refptr<Core> core_; |
| 46 |
| 47 DISALLOW_COPY_AND_ASSIGN(ForwardingNetLog); |
| 48 }; |
| 49 |
| 50 } // namespace net |
| 51 |
| 52 #endif // NET_BASE_FORWARDING_NET_LOG_H_ |
| 53 |
OLD | NEW |