Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(969)

Side by Side Diff: components/proximity_auth/proximity_monitor_impl.cc

Issue 2898513002: [EasyUnlock] Observe proximity changes and clean up TX power strategy. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/proximity_monitor_impl.h" 5 #include "components/proximity_auth/proximity_monitor_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/location.h" 11 #include "base/location.h"
12 #include "base/threading/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "base/time/tick_clock.h" 13 #include "base/time/tick_clock.h"
14 #include "base/time/time.h" 14 #include "base/time/time.h"
15 #include "components/proximity_auth/logging/logging.h" 15 #include "components/proximity_auth/logging/logging.h"
16 #include "components/proximity_auth/metrics.h" 16 #include "components/proximity_auth/metrics.h"
17 #include "components/proximity_auth/proximity_monitor_observer.h" 17 #include "components/proximity_auth/proximity_monitor_observer.h"
18 #include "device/bluetooth/bluetooth_adapter.h" 18 #include "device/bluetooth/bluetooth_adapter.h"
19 #include "device/bluetooth/bluetooth_adapter_factory.h" 19 #include "device/bluetooth/bluetooth_adapter_factory.h"
20 20
21 using device::BluetoothDevice; 21 using device::BluetoothDevice;
22 22
23 namespace proximity_auth { 23 namespace proximity_auth {
24 24
25 // The time to wait, in milliseconds, between proximity polling iterations. 25 // The time to wait, in milliseconds, between proximity polling iterations.
26 const int kPollingTimeoutMs = 250; 26 const int kPollingTimeoutMs = 250;
27 27
28 // The RSSI threshold below which we consider the remote device to not be in 28 // The RSSI threshold below which we consider the remote device to not be in
29 // proximity. 29 // proximity.
sacomoto 2017/05/22 07:30:29 Please add to the comment the pair of devices this
Tim Song 2017/05/22 17:50:59 Done.
30 const int kRssiThreshold = -45; 30 const int kRssiThreshold = -50;
31 31
32 // The weight of the most recent RSSI sample. 32 // The weight of the most recent RSSI sample.
33 const double kRssiSampleWeight = 0.3; 33 const double kRssiSampleWeight = 0.3;
34 34
35 ProximityMonitorImpl::ProximityMonitorImpl( 35 ProximityMonitorImpl::ProximityMonitorImpl(
36 cryptauth::Connection* connection, 36 cryptauth::Connection* connection,
37 std::unique_ptr<base::TickClock> clock) 37 std::unique_ptr<base::TickClock> clock)
38 : connection_(connection), 38 : connection_(connection),
39 remote_device_is_in_proximity_(false), 39 remote_device_is_in_proximity_(false),
40 is_active_(false), 40 is_active_(false),
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 if (remote_device_is_in_proximity_ != is_now_in_proximity) { 199 if (remote_device_is_in_proximity_ != is_now_in_proximity) {
200 PA_LOG(INFO) << "[Proximity] Updated proximity state: " 200 PA_LOG(INFO) << "[Proximity] Updated proximity state: "
201 << (is_now_in_proximity ? "proximate" : "distant"); 201 << (is_now_in_proximity ? "proximate" : "distant");
202 remote_device_is_in_proximity_ = is_now_in_proximity; 202 remote_device_is_in_proximity_ = is_now_in_proximity;
203 for (auto& observer : observers_) 203 for (auto& observer : observers_)
204 observer.OnProximityStateChanged(); 204 observer.OnProximityStateChanged();
205 } 205 }
206 } 206 }
207 207
208 } // namespace proximity_auth 208 } // namespace proximity_auth
OLDNEW
« no previous file with comments | « chrome/browser/signin/easy_unlock_service.cc ('k') | components/proximity_auth/screenlock_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698