| Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| index 6ba2b469292b5e2ab09ea62f33a3f960354ef195..9a15330d50765bcedde5fba60c91fe238ad266b7 100644
|
| --- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| @@ -1147,11 +1147,7 @@ void ChromeClientImpl::installSupplements(LocalFrame& frame) {
|
| provideNavigatorContentUtilsTo(
|
| frame, NavigatorContentUtilsClientImpl::create(webFrame));
|
|
|
| - bool enableWebBluetooth = RuntimeEnabledFeatures::webBluetoothEnabled();
|
| -#if OS(CHROMEOS) || OS(ANDROID) || OS(MACOSX)
|
| - enableWebBluetooth = true;
|
| -#endif
|
| - if (enableWebBluetooth)
|
| + if (RuntimeEnabledFeatures::webBluetoothEnabled())
|
| BluetoothSupplement::provideTo(frame, client->bluetooth());
|
|
|
| ScreenOrientationController::provideTo(frame,
|
|
|