| 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..dd88097543c894df4aa6d2549a600c3660b50497 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();
|
| @@ -256,7 +257,7 @@ class CONTENT_EXPORT WebBluetoothServiceImpl
|
| std::unique_ptr<BluetoothDeviceChooserController> device_chooser_controller_;
|
|
|
| // Keeps track of which devices the frame's origin is allowed to access.
|
| - BluetoothAllowedDevicesMap allowed_devices_map_;
|
| + BluetoothAllowedDevices* allowed_devices_ = nullptr;
|
|
|
| // Maps to get the object's parent based on its instanceID.
|
| std::unordered_map<std::string, std::string> service_id_to_device_address_;
|
|
|