Index: net/tools/quic/quic_epoll_clock.cc |
diff --git a/net/tools/quic/quic_epoll_clock.cc b/net/tools/quic/quic_epoll_clock.cc |
deleted file mode 100644 |
index 450afb8c52442e80249a1be47a731f7a9b673abc..0000000000000000000000000000000000000000 |
--- a/net/tools/quic/quic_epoll_clock.cc |
+++ /dev/null |
@@ -1,29 +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. |
- |
-#include "net/tools/quic/quic_epoll_clock.h" |
- |
-#include "net/tools/epoll_server/epoll_server.h" |
- |
-namespace net { |
-namespace tools { |
- |
-QuicEpollClock::QuicEpollClock(EpollServer* epoll_server) |
- : epoll_server_(epoll_server) { |
-} |
- |
-QuicEpollClock::~QuicEpollClock() {} |
- |
-QuicTime QuicEpollClock::ApproximateNow() const { |
- return QuicTime::Zero().Add( |
- QuicTime::Delta::FromMicroseconds(epoll_server_->ApproximateNowInUsec())); |
-} |
- |
-QuicTime QuicEpollClock::Now() const { |
- return QuicTime::Zero().Add( |
- QuicTime::Delta::FromMicroseconds(epoll_server_->NowInUsec())); |
-} |
- |
-} // namespace tools |
-} // namespace net |