Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: net/quic/platform/api/quic_clock.h

Issue 2547233002: Add a QuicChromiumClock and make QuicClock abstract to match internal code. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_ 5 #ifndef NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_
6 #define NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_ 6 #define NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_
7 7
8 #include "base/macros.h"
9 #include "net/base/net_export.h" 8 #include "net/base/net_export.h"
10 #include "net/quic/core/quic_time.h" 9 #include "net/quic/core/quic_time.h"
11 10
12 namespace net { 11 namespace net {
13 12
14 typedef double WallTime; 13 // Interface for retreiving the current time.
15
16 // Clock to efficiently retrieve an approximately accurate time from an
17 // EpollServer.
18 class NET_EXPORT_PRIVATE QuicClock { 14 class NET_EXPORT_PRIVATE QuicClock {
19 public: 15 public:
20 QuicClock(); 16 QuicClock();
21 virtual ~QuicClock(); 17 virtual ~QuicClock();
22 18
19 QuicClock(const QuicClock&) = delete;
20 QuicClock& operator=(const QuicClock&) = delete;
21
23 // Returns the approximate current time as a QuicTime object. 22 // Returns the approximate current time as a QuicTime object.
Jana 2016/12/03 19:32:19 Can you also define more precisely what "approxima
24 virtual QuicTime ApproximateNow() const; 23 virtual QuicTime ApproximateNow() const = 0;
25 24
26 // Returns the current time as a QuicTime object. 25 // Returns the current time as a QuicTime object.
27 // Note: this use significant resources please use only if needed. 26 // Note: this use significant resources please use only if needed.
Jana 2016/12/03 19:32:19 This note should probably say "this may use signif
28 virtual QuicTime Now() const; 27 virtual QuicTime Now() const = 0;
29 28
30 // WallNow returns the current wall-time - a time that is consistent across 29 // WallNow returns the current wall-time - a time that is consistent across
31 // different clocks. 30 // different clocks.
32 virtual QuicWallTime WallNow() const; 31 virtual QuicWallTime WallNow() const = 0;
33 32
34 // Converts |walltime| to a QuicTime relative to this clock's epoch. 33 // Converts |walltime| to a QuicTime relative to this clock's epoch.
35 virtual QuicTime ConvertWallTimeToQuicTime( 34 virtual QuicTime ConvertWallTimeToQuicTime(
36 const QuicWallTime& walltime) const; 35 const QuicWallTime& walltime) const;
37
38 private:
39 DISALLOW_COPY_AND_ASSIGN(QuicClock);
40 }; 36 };
41 37
42 } // namespace net 38 } // namespace net
43 39
44 #endif // NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_ 40 #endif // NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698