| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 3abed6c03e97efdec77f487d398acf3f4d424355..37b0b77a73d1863beec8e34d144444773a70450b 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -35,6 +35,8 @@
|
| #include "chrome/browser/background/background_contents_service.h"
|
| #include "chrome/browser/background/background_contents_service_factory.h"
|
| #include "chrome/browser/banners/app_banner_manager_desktop.h"
|
| +#include "chrome/browser/bluetooth/bluetooth_allowed_devices_map.h"
|
| +#include "chrome/browser/bluetooth/bluetooth_allowed_devices_map_factory.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/browser_shutdown.h"
|
| #include "chrome/browser/chrome_notification_types.h"
|
| @@ -1340,6 +1342,12 @@ std::unique_ptr<content::BluetoothChooser> Browser::RunBluetoothChooser(
|
| return std::move(bluetooth_chooser_desktop);
|
| }
|
|
|
| +content::BluetoothAllowedDevicesMapBase* Browser::GetBluetoothDevicesMap(
|
| + content::RenderFrameHost* frame) {
|
| + return BluetoothAllowedDevicesMapFactory::GetForProfile(
|
| + frame->GetProcess()->GetBrowserContext());
|
| +}
|
| +
|
| void Browser::RequestAppBannerFromDevTools(content::WebContents* web_contents) {
|
| banners::AppBannerManagerDesktop::CreateForWebContents(web_contents);
|
| banners::AppBannerManagerDesktop* manager =
|
|
|