blob: cb8038062157a7282fda1a4178edc2de49cf2cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_TOOLS_GDIG_FILE_NET_LOG_H_
#define NET_TOOLS_GDIG_FILE_NET_LOG_H_
#include <string>
#include "base/atomic_sequence_num.h"
#include "base/basictypes.h"
#include "base/synchronization/lock.h"
#include "base/time.h"
#include "net/base/net_log.h"
namespace net {
// FileNetLog is a simple implementation of NetLog that prints out all
// the events received into the stream passed to the constructor.
class FileNetLog : public NetLog {
public:
explicit FileNetLog(FILE* destination, LogLevel level);
virtual ~FileNetLog();
private:
// NetLog implementation:
virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
virtual uint32 NextID() OVERRIDE;
virtual LogLevel GetLogLevel() const OVERRIDE;
virtual void AddThreadSafeObserver(ThreadSafeObserver* observer,
LogLevel log_level) OVERRIDE;
virtual void SetObserverLogLevel(ThreadSafeObserver* observer,
LogLevel log_level) OVERRIDE;
virtual void RemoveThreadSafeObserver(ThreadSafeObserver* observer) OVERRIDE;
base::AtomicSequenceNumber sequence_number_;
const NetLog::LogLevel log_level_;
FILE* const destination_;
base::Lock lock_;
base::Time first_event_time_;
};
} // namespace net
#endif // NET_TOOLS_GDIG_FILE_NET_LOG_H_
|