| Index: components/proximity_auth/proximity_monitor_impl.cc
|
| diff --git a/components/proximity_auth/proximity_monitor_impl.cc b/components/proximity_auth/proximity_monitor_impl.cc
|
| index 6114f4996e8d9c50fde8c6e1043eac66d7c05ac3..e6d8d7b2c01413eaae8acf6cdcec6508303b93ed 100644
|
| --- a/components/proximity_auth/proximity_monitor_impl.cc
|
| +++ b/components/proximity_auth/proximity_monitor_impl.cc
|
| @@ -32,8 +32,9 @@ const int kRssiThreshold = -5;
|
| // The weight of the most recent RSSI sample.
|
| const double kRssiSampleWeight = 0.3;
|
|
|
| -ProximityMonitorImpl::ProximityMonitorImpl(const RemoteDevice& remote_device,
|
| - scoped_ptr<base::TickClock> clock)
|
| +ProximityMonitorImpl::ProximityMonitorImpl(
|
| + const RemoteDevice& remote_device,
|
| + std::unique_ptr<base::TickClock> clock)
|
| : remote_device_(remote_device),
|
| strategy_(Strategy::NONE),
|
| remote_device_is_in_proximity_(false),
|
|
|