| Index: content/common/inter_process_time_ticks_converter.cc
|
| diff --git a/content/common/inter_process_time_ticks_converter.cc b/content/common/inter_process_time_ticks_converter.cc
|
| index 09c14f0ec62585df5631076dfed515745bfefe92..0fbd2261592f1c195d513628d994271afb1aafb6 100644
|
| --- a/content/common/inter_process_time_ticks_converter.cc
|
| +++ b/content/common/inter_process_time_ticks_converter.cc
|
| @@ -37,7 +37,8 @@ LocalTimeTicks InterProcessTimeTicksConverter::ToLocalTimeTicks(
|
| const RemoteTimeTicks& remote_ms) {
|
| DCHECK_LE(remote_lower_bound_, remote_ms.value_);
|
| DCHECK_GE(remote_upper_bound_, remote_ms.value_);
|
| - RemoteTimeDelta remote_delta = remote_ms - remote_lower_bound_;
|
| + RemoteTimeDelta remote_delta = remote_ms -
|
| + RemoteTimeTicks(remote_lower_bound_);
|
| return LocalTimeTicks(remote_lower_bound_ + offset_ +
|
| ToLocalTimeDelta(remote_delta).value_);
|
| }
|
|
|