Componentize AccountReconcilor.
[chromium-blink-merge.git] / chrome / browser / net / chrome_net_log.h
blob4114868af29179aaafdbbec85ad8a2d7d71ecd22
1 // Copyright (c) 2012 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.
5 #ifndef CHROME_BROWSER_NET_CHROME_NET_LOG_H_
6 #define CHROME_BROWSER_NET_CHROME_NET_LOG_H_
8 #include "base/atomicops.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/observer_list.h"
11 #include "base/synchronization/lock.h"
12 #include "net/base/net_log.h"
14 namespace net {
15 class NetLogLogger;
18 class NetLogTempFile;
20 // ChromeNetLog is an implementation of NetLog that adds file loggers
21 // as its observers.
22 class ChromeNetLog : public net::NetLog {
23 public:
24 ChromeNetLog();
25 virtual ~ChromeNetLog();
27 NetLogTempFile* net_log_temp_file() {
28 return net_log_temp_file_.get();
31 private:
32 scoped_ptr<net::NetLogLogger> net_log_logger_;
33 scoped_ptr<NetLogTempFile> net_log_temp_file_;
35 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog);
38 #endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_