blob: 6c6c23c8d1ae666d50d30ac1dec5dcc04be74a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright (c) 2012 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.
#include "chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h"
#include "base/memory/ref_counted.h"
#include "chrome/browser/extensions/api/bluetooth/bluetooth_api.h"
#include "chrome/browser/extensions/api/bluetooth/bluetooth_event_router.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
namespace {
const char kPlatformNotSupported[] =
"This operation is not supported on your platform";
extensions::BluetoothEventRouter* GetEventRouter(
content::BrowserContext* context) {
return extensions::BluetoothAPI::Get(context)->bluetooth_event_router();
}
bool IsBluetoothSupported(content::BrowserContext* context) {
return GetEventRouter(context)->IsBluetoothSupported();
}
void GetAdapter(const device::BluetoothAdapterFactory::AdapterCallback callback,
content::BrowserContext* context) {
GetEventRouter(context)->GetAdapter(callback);
}
} // namespace
namespace extensions {
namespace api {
BluetoothExtensionFunction::BluetoothExtensionFunction() {
}
BluetoothExtensionFunction::~BluetoothExtensionFunction() {
}
bool BluetoothExtensionFunction::RunImpl() {
if (!IsBluetoothSupported(browser_context())) {
SetError(kPlatformNotSupported);
return false;
}
GetAdapter(base::Bind(&BluetoothExtensionFunction::RunOnAdapterReady, this),
browser_context());
return true;
}
void BluetoothExtensionFunction::RunOnAdapterReady(
scoped_refptr<device::BluetoothAdapter> adapter) {
DoWork(adapter);
}
} // namespace api
} // namespace extensions
|