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

Unified Diff: device/bluetooth/discovery_session.h

Issue 2564113003: bluetooth: Add basic scanning to chrome://bluetooth-internals. (Closed)
Patch Set: Replace discovering string in bluetooth_internals.js Created 3 years, 11 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
« no previous file with comments | « device/bluetooth/adapter.cc ('k') | device/bluetooth/discovery_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/discovery_session.h
diff --git a/device/bluetooth/discovery_session.h b/device/bluetooth/discovery_session.h
new file mode 100644
index 0000000000000000000000000000000000000000..ad94168b978835f4f6a1c18c5e103390749f15e5
--- /dev/null
+++ b/device/bluetooth/discovery_session.h
@@ -0,0 +1,47 @@
+// Copyright 2017 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 DEVICE_BLUETOOTH_DISCOVERY_SESSION_H_
+#define DEVICE_BLUETOOTH_DISCOVERY_SESSION_H_
+
+#include "base/memory/ptr_util.h"
+#include "device/bluetooth/bluetooth_discovery_session.h"
+#include "device/bluetooth/public/interfaces/adapter.mojom.h"
+
+namespace bluetooth {
+
+// Implementation of Mojo DiscoverySession in
+// device/bluetooth/public/interfaces/adapter.mojom.
+// It handles requests to interact with a DiscoverySession.
+// Uses the platform abstraction of device/bluetooth.
+// An instance of this class is constructed by Adapter and strongly bound
+// to its MessagePipe. When the instance is destroyed, the underlying
+// BluetoothDiscoverySession is requested to stop. Users are encouraged to call
+// DiscoverySession::Stop in order to respond to a failed request to stop
+// device discovery.
+class DiscoverySession : public mojom::DiscoverySession {
+ public:
+ explicit DiscoverySession(
+ std::unique_ptr<device::BluetoothDiscoverySession> session);
+ ~DiscoverySession() override;
+
+ // mojom::DiscoverySession overrides:
+ void IsActive(const IsActiveCallback& callback) override;
+ void Stop(const StopCallback& callback) override;
+
+ private:
+ void OnStop(const StopCallback& callback);
+ void OnStopError(const StopCallback& callback);
+
+ // The underlying discovery session.
+ std::unique_ptr<device::BluetoothDiscoverySession> discovery_session_;
+
+ base::WeakPtrFactory<DiscoverySession> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(DiscoverySession);
+};
+
+} // namespace bluetooth
+
+#endif
« no previous file with comments | « device/bluetooth/adapter.cc ('k') | device/bluetooth/discovery_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698