| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "components/proximity_auth/bluetooth_throttler_impl.h" | 5 #include "components/cryptauth/bluetooth_throttler_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
| 10 #include "base/time/tick_clock.h" | 10 #include "base/time/tick_clock.h" |
| 11 #include "components/proximity_auth/connection.h" | 11 #include "components/cryptauth/connection.h" |
| 12 | 12 |
| 13 namespace proximity_auth { | 13 namespace cryptauth { |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 // Time to wait after disconnect before reconnecting. | 16 // Time to wait after disconnect before reconnecting. |
| 17 const int kCooldownTimeSecs = 7; | 17 const int kCooldownTimeSecs = 7; |
| 18 | 18 |
| 19 } // namespace | 19 } // namespace |
| 20 | 20 |
| 21 BluetoothThrottlerImpl::BluetoothThrottlerImpl( | 21 BluetoothThrottlerImpl::BluetoothThrottlerImpl( |
| 22 std::unique_ptr<base::TickClock> clock) | 22 std::unique_ptr<base::TickClock> clock) |
| 23 : clock_(std::move(clock)) {} | 23 : clock_(std::move(clock)) {} |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 Connection::Status old_status, | 56 Connection::Status old_status, |
| 57 Connection::Status new_status) { | 57 Connection::Status new_status) { |
| 58 DCHECK(base::ContainsKey(connections_, connection)); | 58 DCHECK(base::ContainsKey(connections_, connection)); |
| 59 if (new_status == Connection::DISCONNECTED) { | 59 if (new_status == Connection::DISCONNECTED) { |
| 60 last_disconnect_time_ = clock_->NowTicks(); | 60 last_disconnect_time_ = clock_->NowTicks(); |
| 61 connection->RemoveObserver(this); | 61 connection->RemoveObserver(this); |
| 62 connections_.erase(connection); | 62 connections_.erase(connection); |
| 63 } | 63 } |
| 64 } | 64 } |
| 65 | 65 |
| 66 } // namespace proximity_auth | 66 } // namespace cryptauth |
| OLD | NEW |