blob: d27c8d0e57e860098ab1811680019bd210893e21 (
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
48
49
50
51
52
53
54
|
// Copyright (c) 2010 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 CHROME_BROWSER_NET_CHROME_NET_LOG_H_
#define CHROME_BROWSER_NET_CHROME_NET_LOG_H_
#include "base/observer_list.h"
#include "net/base/net_log.h"
class PassiveLogCollector;
// ChromeNetLog is an implementation of NetLog that dispatches network log
// messages to a list of observers.
//
// By default, ChromeNetLog will attach the observer PassiveLogCollector which
// will keep track of recent request information (which used when displaying
// the about:net-internals page).
//
// TODO(eroman): Move this default observer out of ChromeNetLog.
//
class ChromeNetLog : public net::NetLog {
public:
// Interface for observing the events logged by the network stack.
class Observer {
public:
virtual ~Observer() {}
virtual void OnAddEntry(const Entry& entry) = 0;
};
ChromeNetLog();
~ChromeNetLog();
// NetLog implementation:
virtual void AddEntry(const Entry& entry);
virtual int NextID();
virtual bool HasListener() const;
void AddObserver(Observer* observer);
void RemoveObserver(Observer* observer);
PassiveLogCollector* passive_collector() {
return passive_collector_.get();
}
private:
int next_id_;
scoped_ptr<PassiveLogCollector> passive_collector_;
ObserverList<Observer, true> observers_;
DISALLOW_COPY_AND_ASSIGN(ChromeNetLog);
};
#endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_
|