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

Side by Side Diff: device/bluetooth/adapter_factory.cc

Issue 2379573006: bluetooth: Standardize Bluetooth adapter access in Adapter service. (Closed)
Patch Set: dcheng fixes Created 4 years, 2 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
« no previous file with comments | « device/bluetooth/adapter_factory.h ('k') | device/bluetooth/public/interfaces/adapter.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <utility>
6
7 #include "base/memory/ptr_util.h"
8 #include "device/bluetooth/adapter.h"
9 #include "device/bluetooth/adapter_factory.h"
10 #include "device/bluetooth/bluetooth_adapter_factory.h"
11 #include "mojo/public/cpp/bindings/strong_binding.h"
12
13 namespace bluetooth {
14
15 AdapterFactory::AdapterFactory() : weak_ptr_factory_(this) {}
16 AdapterFactory::~AdapterFactory() {}
17
18 // static
19 void AdapterFactory::Create(mojom::AdapterFactoryRequest request) {
20 mojo::MakeStrongBinding(base::MakeUnique<AdapterFactory>(),
21 std::move(request));
22 }
23
24 void AdapterFactory::GetAdapter(const GetAdapterCallback& callback) {
25 if (device::BluetoothAdapterFactory::IsBluetoothAdapterAvailable()) {
26 device::BluetoothAdapterFactory::GetAdapter(
27 base::Bind(&AdapterFactory::OnGetAdapter,
28 weak_ptr_factory_.GetWeakPtr(), callback));
29 } else {
30 callback.Run(nullptr /* AdapterPtr */);
31 }
32 }
33
34 void AdapterFactory::OnGetAdapter(
35 const GetAdapterCallback& callback,
36 scoped_refptr<device::BluetoothAdapter> adapter) {
37 mojom::AdapterPtr adapter_ptr;
38 mojo::MakeStrongBinding(base::MakeUnique<Adapter>(adapter),
39 mojo::GetProxy(&adapter_ptr));
40 callback.Run(std::move(adapter_ptr));
41 }
42
43 } // namespace bluetooth
OLDNEW
« no previous file with comments | « device/bluetooth/adapter_factory.h ('k') | device/bluetooth/public/interfaces/adapter.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698