| Index: device/bluetooth/bluetooth_task_manager_win.h
|
| diff --git a/device/bluetooth/bluetooth_task_manager_win.h b/device/bluetooth/bluetooth_task_manager_win.h
|
| index e8b7ae67d1484a29221bec5e80903bb31fbb0adb..2beda13dcbd230811939bd2fa96ffdec3f2b3136 100644
|
| --- a/device/bluetooth/bluetooth_task_manager_win.h
|
| +++ b/device/bluetooth/bluetooth_task_manager_win.h
|
| @@ -14,7 +14,6 @@
|
| #include "base/observer_list.h"
|
| #include "base/win/scoped_handle.h"
|
| #include "device/bluetooth/bluetooth_adapter.h"
|
| -#include "device/bluetooth/bluetooth_export.h"
|
|
|
| namespace base {
|
|
|
| @@ -33,10 +32,10 @@
|
| // It delegates the blocking Windows API calls to |bluetooth_task_runner_|'s
|
| // message loop, and receives responses via methods like OnAdapterStateChanged
|
| // posted to UI thread.
|
| -class DEVICE_BLUETOOTH_EXPORT BluetoothTaskManagerWin
|
| +class BluetoothTaskManagerWin
|
| : public base::RefCountedThreadSafe<BluetoothTaskManagerWin> {
|
| public:
|
| - struct DEVICE_BLUETOOTH_EXPORT AdapterState {
|
| + struct AdapterState {
|
| AdapterState();
|
| ~AdapterState();
|
| std::string name;
|
| @@ -44,7 +43,7 @@
|
| bool powered;
|
| };
|
|
|
| - struct DEVICE_BLUETOOTH_EXPORT ServiceRecordState {
|
| + struct ServiceRecordState {
|
| ServiceRecordState();
|
| ~ServiceRecordState();
|
| // Properties common to Bluetooth Classic and LE devices.
|
| @@ -55,7 +54,7 @@
|
| BluetoothUUID gatt_uuid;
|
| };
|
|
|
| - struct DEVICE_BLUETOOTH_EXPORT DeviceState {
|
| + struct DeviceState {
|
| DeviceState();
|
| ~DeviceState();
|
|
|
| @@ -74,7 +73,7 @@
|
| base::FilePath path;
|
| };
|
|
|
| - class DEVICE_BLUETOOTH_EXPORT Observer {
|
| + class Observer {
|
| public:
|
| virtual ~Observer() {}
|
|
|
|
|