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

Unified Diff: components/proximity_auth/throttled_bluetooth_connection_finder.h

Issue 663693002: [Easy Unlock] Port the BluetoothThrottler class to native code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows compilation error, take 2 Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/throttled_bluetooth_connection_finder.h
diff --git a/components/proximity_auth/throttled_bluetooth_connection_finder.h b/components/proximity_auth/throttled_bluetooth_connection_finder.h
new file mode 100644
index 0000000000000000000000000000000000000000..c107bb33b544380db9a447ed3bd2f8b83d5e07b4
--- /dev/null
+++ b/components/proximity_auth/throttled_bluetooth_connection_finder.h
@@ -0,0 +1,60 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_PROXIMITY_AUTH_THROTTLED_BLUETOOTH_CONNECTION_FINDER_H
+#define COMPONENTS_PROXIMITY_AUTH_THROTTLED_BLUETOOTH_CONNECTION_FINDER_H
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "components/proximity_auth/connection_finder.h"
+
+namespace base {
+class TaskRunner;
+}
+
+namespace proximity_auth {
+
+class BluetoothConnectionFinder;
+class BluetoothThrottler;
+class Connection;
+
+// A Bluetooth connection finder that delays Find() requests according to the
+// throttler's cooldown period.
+class ThrottledBluetoothConnectionFinder : public ConnectionFinder {
+ public:
+ // Note: The |throttler| is not owned, and must outlive |this| instance.
+ ThrottledBluetoothConnectionFinder(
+ scoped_ptr<BluetoothConnectionFinder> connection_finder,
+ scoped_refptr<base::TaskRunner> task_runner,
+ BluetoothThrottler* throttler);
+ ~ThrottledBluetoothConnectionFinder() override;
+
+ // ConnectionFinder:
+ void Find(const ConnectionCallback& connection_callback) override;
+
+ private:
+ // Callback to be called when a connection is found.
+ void OnConnection(const ConnectionCallback& connection_callback,
+ scoped_ptr<Connection> connection);
+
+ // The underlying connection finder.
+ scoped_ptr<BluetoothConnectionFinder> connection_finder_;
+
+ // The task runner used for posting delayed messages.
+ scoped_refptr<base::TaskRunner> task_runner_;
+
+ // The throttler managing this connection finder. The throttler is not owned,
+ // and must outlive |this| instance.
+ BluetoothThrottler* throttler_;
+
+ base::WeakPtrFactory<ThrottledBluetoothConnectionFinder> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ThrottledBluetoothConnectionFinder);
+};
+
+} // namespace proximity_auth
+
+#endif // COMPONENTS_PROXIMITY_AUTH_THROTTLED_BLUETOOTH_CONNECTION_FINDER_H
« no previous file with comments | « components/proximity_auth/connection_unittest.cc ('k') | components/proximity_auth/throttled_bluetooth_connection_finder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698