| Index: content/shell/browser/shell.cc
|
| diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc
|
| index f25b9031a76ae83d48376a88c97361fd43013c85..b8ee591115aa99ccbbebba2213c79bdba9a16788 100644
|
| --- a/content/shell/browser/shell.cc
|
| +++ b/content/shell/browser/shell.cc
|
| @@ -461,6 +461,15 @@ std::unique_ptr<BluetoothChooser> Shell::RunBluetoothChooser(
|
| return nullptr;
|
| }
|
|
|
| +BluetoothAllowedDevicesMapBase* Shell::GetBluetoothDevicesMap(
|
| + RenderFrameHost* frame) {
|
| + if (switches::IsRunLayoutTestSwitchPresent()) {
|
| + return BlinkTestController::Get()->GetBluetoothAllowedDevicesMap(
|
| + web_contents()->GetBrowserContext());
|
| + }
|
| + return nullptr;
|
| +}
|
| +
|
| bool Shell::DidAddMessageToConsole(WebContents* source,
|
| int32_t level,
|
| const base::string16& message,
|
|
|