Index: remoting/host/vlog_net_log.h |
diff --git a/remoting/host/vlog_net_log.h b/remoting/host/vlog_net_log.h |
deleted file mode 100644 |
index 393ab1c680492992028dbe5eb8023bab160f55a1..0000000000000000000000000000000000000000 |
--- a/remoting/host/vlog_net_log.h |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-// 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 REMOTING_HOST_VLOG_NET_LOG_H_ |
-#define REMOTING_HOST_VLOG_NET_LOG_H_ |
- |
-#include "base/memory/scoped_handle.h" |
-#include "base/memory/scoped_ptr.h" |
-#include "net/base/net_log.h" |
- |
-namespace remoting { |
- |
-// Redirectes all networking events (i.e. events logged through net::NetLog) to |
-// VLOG(4). Note that an explicit reference to a net::NetLog object has to be |
-// passed to networking classes to receive the events. There is no global |
-// network events logger exists. |
-class VlogNetLog : public net::NetLog { |
- public: |
- VlogNetLog(); |
- virtual ~VlogNetLog(); |
- |
- private: |
- class Observer; |
- scoped_ptr<Observer> observer_; |
- |
- DISALLOW_COPY_AND_ASSIGN(VlogNetLog); |
-}; |
- |
-} // namespace remoting |
- |
-#endif // REMOTING_HOST_VLOG_NET_LOG_H_ |