| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index e1348926806a53de700ac03507303cbefb966e30..53e03d23d6171b4927f4a39abbc5abfc64cd9c76 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2224,8 +2224,10 @@ void RenderFrameHostImpl::RegisterMojoInterfaces() {
|
| base::Bind(&device::VibrationManagerImpl::Create));
|
| #endif // defined(OS_ANDROID)
|
|
|
| + // Web Bluetooth is shipped on Android, ChromeOS & MacOS, experimental
|
| + // otherwise.
|
| bool enable_web_bluetooth = base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableWebBluetooth);
|
| + switches::kEnableExperimentalWebPlatformFeatures);
|
| #if defined(OS_CHROMEOS) || defined(OS_ANDROID) || defined(OS_MACOSX)
|
| enable_web_bluetooth = true;
|
| #endif
|
|
|