Index: content/common/inter_process_time_ticks_converter.h |
=================================================================== |
--- content/common/inter_process_time_ticks_converter.h (revision 184957) |
+++ content/common/inter_process_time_ticks_converter.h (working copy) |
@@ -55,14 +55,14 @@ |
// Returns the value within the local's bounds that correlates to |
// |remote_ms|. |
- LocalTimeTicks ToLocalTimeTicks(const RemoteTimeTicks& remote_ms); |
+ LocalTimeTicks ToLocalTimeTicks(const RemoteTimeTicks& remote_ms) const; |
// Returns the equivalent delta after applying remote-to-local scaling to |
// |remote_delta|. |
- LocalTimeDelta ToLocalTimeDelta(const RemoteTimeDelta& remote_delta); |
+ LocalTimeDelta ToLocalTimeDelta(const RemoteTimeDelta& remote_delta) const; |
private: |
- int64 Convert(int64 value); |
+ int64 Convert(int64 value) const; |
int64 offset_; |
int64 numerator_; |