| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 95f5e69a4b34fce317448eabea37f81605ab5beb..f6e05fe3473ef78e8bee01dcae694b707afe6f28 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1523,14 +1523,8 @@ void WebLocalFrameImpl::setCoreFrame(LocalFrame* frame)
|
| // OriginTrials::webUSBEnabled().
|
| USBController::provideTo(*m_frame, m_client ? m_client->usbClient() : nullptr);
|
|
|
| - bool enableWebBluetooth = RuntimeEnabledFeatures::webBluetoothEnabled();
|
| -#if OS(CHROMEOS) || OS(ANDROID)
|
| - enableWebBluetooth = true;
|
| -#endif
|
| -
|
| - if (enableWebBluetooth)
|
| + if (RuntimeEnabledFeatures::webBluetoothEnabled())
|
| BluetoothSupplement::provideTo(*m_frame, m_client ? m_client->bluetooth() : nullptr);
|
| -
|
| if (RuntimeEnabledFeatures::screenOrientationEnabled())
|
| ScreenOrientationController::provideTo(*m_frame, m_client ? m_client->webScreenOrientationClient() : nullptr);
|
| if (RuntimeEnabledFeatures::presentationEnabled())
|
|
|