| Index: content/renderer/renderer_blink_platform_impl.cc | 
| diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc | 
| index 9ff5b4f25c4c78a23f239d7d0dcd708f23e8280b..c247612a17c764283b9b8ce3f3bd772bbdf72a88 100644 | 
| --- a/content/renderer/renderer_blink_platform_impl.cc | 
| +++ b/content/renderer/renderer_blink_platform_impl.cc | 
| @@ -14,7 +14,6 @@ | 
| #include "base/numerics/safe_conversions.h" | 
| #include "base/strings/string_number_conversions.h" | 
| #include "base/strings/utf_string_conversions.h" | 
| -#include "content/child/bluetooth/web_bluetooth_impl.h" | 
| #include "content/child/database_util.h" | 
| #include "content/child/file_info_util.h" | 
| #include "content/child/fileapi/webfilesystem_impl.h" | 
| @@ -237,8 +236,7 @@ RendererBlinkPlatformImpl::RendererBlinkPlatformImpl( | 
| sudden_termination_disables_(0), | 
| plugin_refresh_allowed_(true), | 
| default_task_runner_(renderer_scheduler->DefaultTaskRunner()), | 
| -      web_scrollbar_behavior_(new WebScrollbarBehaviorImpl), | 
| -      bluetooth_(new WebBluetoothImpl) { | 
| +      web_scrollbar_behavior_(new WebScrollbarBehaviorImpl) { | 
| if (g_sandbox_enabled && sandboxEnabled()) { | 
| sandbox_support_.reset(new RendererBlinkPlatformImpl::SandboxSupport); | 
| } else { | 
| @@ -1212,12 +1210,6 @@ void RendererBlinkPlatformImpl::queryStorageUsageAndQuota( | 
|  | 
| //------------------------------------------------------------------------------ | 
|  | 
| -blink::WebBluetooth* RendererBlinkPlatformImpl::bluetooth() { | 
| -  return bluetooth_.get(); | 
| -} | 
| - | 
| -//------------------------------------------------------------------------------ | 
| - | 
| void RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting( | 
| const blink::WebBatteryStatus& status) { | 
| if (!g_test_battery_status_listener) | 
|  |