| OLD | NEW |
| 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 "net/base/net_export.h" | |
| 9 #include "net/quic/core/quic_time.h" | 8 #include "net/quic/core/quic_time.h" |
| 9 #include "net/quic/platform/api/quic_export.h" |
| 10 | 10 |
| 11 namespace net { | 11 namespace net { |
| 12 | 12 |
| 13 // Interface for retreiving the current time. | 13 // Interface for retreiving the current time. |
| 14 class NET_EXPORT_PRIVATE QuicClock { | 14 class QUIC_EXPORT_PRIVATE QuicClock { |
| 15 public: | 15 public: |
| 16 QuicClock(); | 16 QuicClock(); |
| 17 virtual ~QuicClock(); | 17 virtual ~QuicClock(); |
| 18 | 18 |
| 19 QuicClock(const QuicClock&) = delete; | 19 QuicClock(const QuicClock&) = delete; |
| 20 QuicClock& operator=(const QuicClock&) = delete; | 20 QuicClock& operator=(const QuicClock&) = delete; |
| 21 | 21 |
| 22 // Returns the approximate current time as a QuicTime object. | 22 // Returns the approximate current time as a QuicTime object. |
| 23 virtual QuicTime ApproximateNow() const = 0; | 23 virtual QuicTime ApproximateNow() const = 0; |
| 24 | 24 |
| 25 // Returns the current time as a QuicTime object. | 25 // Returns the current time as a QuicTime object. |
| 26 // Note: this use significant resources please use only if needed. | 26 // Note: this use significant resources please use only if needed. |
| 27 virtual QuicTime Now() const = 0; | 27 virtual QuicTime Now() const = 0; |
| 28 | 28 |
| 29 // 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 |
| 30 // different clocks. | 30 // different clocks. |
| 31 virtual QuicWallTime WallNow() const = 0; | 31 virtual QuicWallTime WallNow() const = 0; |
| 32 | 32 |
| 33 // Converts |walltime| to a QuicTime relative to this clock's epoch. | 33 // Converts |walltime| to a QuicTime relative to this clock's epoch. |
| 34 virtual QuicTime ConvertWallTimeToQuicTime( | 34 virtual QuicTime ConvertWallTimeToQuicTime( |
| 35 const QuicWallTime& walltime) const; | 35 const QuicWallTime& walltime) const; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace net | 38 } // namespace net |
| 39 | 39 |
| 40 #endif // NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_ | 40 #endif // NET_QUIC_PLATFORM_API_QUIC_CLOCK_H_ |
| OLD | NEW |