Searched refs:RemoteTimeDelta (Results 1 – 3 of 3) sorted by relevance
15 class RemoteTimeDelta; variable62 LocalTimeDelta ToLocalTimeDelta(const RemoteTimeDelta& remote_delta) const;112 class CONTENT_EXPORT RemoteTimeDelta {114 static RemoteTimeDelta FromRawDelta(int delta) { in FromRawDelta()115 return RemoteTimeDelta(delta); in FromRawDelta()122 RemoteTimeDelta(int value) : value_(value) {} in RemoteTimeDelta() function133 RemoteTimeDelta operator-(const RemoteTimeTicks& rhs) const {134 return RemoteTimeDelta(value_ - rhs.value_);
57 RemoteTimeDelta remote_delta = remote_ms - remote_lower_bound_; in ToLocalTimeTicks()63 const RemoteTimeDelta& remote_delta) const { in ToLocalTimeDelta()
52 RemoteTimeDelta::FromRawDelta(params.test_delta)).ToInt32(); in RunTest()