OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_NET_CHROME_NET_LOG_H_ | 5 #ifndef CHROME_BROWSER_NET_CHROME_NET_LOG_H_ |
6 #define CHROME_BROWSER_NET_CHROME_NET_LOG_H_ | 6 #define CHROME_BROWSER_NET_CHROME_NET_LOG_H_ |
7 | 7 |
8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "base/scoped_ptr.h" |
9 #include "net/base/net_log.h" | 10 #include "net/base/net_log.h" |
10 | 11 |
11 class PassiveLogCollector; | 12 class PassiveLogCollector; |
12 | 13 |
13 // ChromeNetLog is an implementation of NetLog that dispatches network log | 14 // ChromeNetLog is an implementation of NetLog that dispatches network log |
14 // messages to a list of observers. | 15 // messages to a list of observers. |
15 // | 16 // |
16 // By default, ChromeNetLog will attach the observer PassiveLogCollector which | 17 // By default, ChromeNetLog will attach the observer PassiveLogCollector which |
17 // will keep track of recent request information (which used when displaying | 18 // will keep track of recent request information (which used when displaying |
18 // the about:net-internals page). | 19 // the about:net-internals page). |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 54 |
54 private: | 55 private: |
55 uint32 next_id_; | 56 uint32 next_id_; |
56 scoped_ptr<PassiveLogCollector> passive_collector_; | 57 scoped_ptr<PassiveLogCollector> passive_collector_; |
57 ObserverList<Observer, true> observers_; | 58 ObserverList<Observer, true> observers_; |
58 | 59 |
59 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog); | 60 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog); |
60 }; | 61 }; |
61 | 62 |
62 #endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_ | 63 #endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_ |
OLD | NEW |