| Index: content/browser/bluetooth/web_bluetooth_service_impl.h
|
| diff --git a/content/browser/bluetooth/web_bluetooth_service_impl.h b/content/browser/bluetooth/web_bluetooth_service_impl.h
|
| index 21660329d44778147a769d2eaf542e25bbcf7e69..e607e1a23bfdca7aa67bc51a107b105d38e7f54f 100644
|
| --- a/content/browser/bluetooth/web_bluetooth_service_impl.h
|
| +++ b/content/browser/bluetooth/web_bluetooth_service_impl.h
|
| @@ -12,7 +12,7 @@
|
| #include "base/macros.h"
|
| #include "base/optional.h"
|
| #include "content/browser/bad_message.h"
|
| -#include "content/browser/bluetooth/bluetooth_allowed_devices_map.h"
|
| +#include "content/browser/bluetooth/bluetooth_allowed_devices.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| #include "device/bluetooth/bluetooth_adapter.h"
|
| @@ -248,6 +248,7 @@ class CONTENT_EXPORT WebBluetoothServiceImpl
|
| RenderProcessHost* GetRenderProcessHost();
|
| device::BluetoothAdapter* GetAdapter();
|
| url::Origin GetOrigin();
|
| + BluetoothAllowedDevices& allowed_devices();
|
|
|
| // Clears all state (maps, sets, etc).
|
| void ClearState();
|
| @@ -255,9 +256,6 @@ class CONTENT_EXPORT WebBluetoothServiceImpl
|
| // Used to open a BluetoothChooser and start a device discovery session.
|
| std::unique_ptr<BluetoothDeviceChooserController> device_chooser_controller_;
|
|
|
| - // Keeps track of which devices the frame's origin is allowed to access.
|
| - BluetoothAllowedDevicesMap allowed_devices_map_;
|
| -
|
| // Maps to get the object's parent based on its instanceID.
|
| std::unordered_map<std::string, std::string> service_id_to_device_address_;
|
| std::unordered_map<std::string, std::string> characteristic_id_to_service_id_;
|
|
|