| Index: content/renderer/render_frame_impl.cc
|
| diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
|
| index 29958841fffe598a1847d66da414a6a16353a047..08e87a6c605ba3e55022031d2e438494a169337f 100644
|
| --- a/content/renderer/render_frame_impl.cc
|
| +++ b/content/renderer/render_frame_impl.cc
|
| @@ -125,7 +125,6 @@
|
| #include "content/renderer/shared_worker_repository.h"
|
| #include "content/renderer/skia_benchmarking_extension.h"
|
| #include "content/renderer/stats_collection_controller.h"
|
| -#include "content/renderer/usb/web_usb_client_impl.h"
|
| #include "content/renderer/wake_lock/wake_lock_dispatcher.h"
|
| #include "content/renderer/web_frame_utils.h"
|
| #include "content/renderer/web_ui_extension.h"
|
| @@ -162,7 +161,6 @@
|
| #include "third_party/WebKit/public/platform/WebURLError.h"
|
| #include "third_party/WebKit/public/platform/WebURLResponse.h"
|
| #include "third_party/WebKit/public/platform/WebVector.h"
|
| -#include "third_party/WebKit/public/platform/modules/webusb/WebUSBClient.h"
|
| #include "third_party/WebKit/public/web/WebColorSuggestion.h"
|
| #include "third_party/WebKit/public/web/WebDocument.h"
|
| #include "third_party/WebKit/public/web/WebFindOptions.h"
|
| @@ -4292,16 +4290,6 @@ blink::WebBluetooth* RenderFrameImpl::bluetooth() {
|
| return bluetooth_.get();
|
| }
|
|
|
| -blink::WebUSBClient* RenderFrameImpl::usbClient() {
|
| - if (!base::FeatureList::IsEnabled(features::kWebUsb))
|
| - return nullptr;
|
| -
|
| - if (!usb_client_)
|
| - usb_client_.reset(new WebUSBClientImpl(GetServiceRegistry()));
|
| -
|
| - return usb_client_.get();
|
| -}
|
| -
|
| #if defined(ENABLE_WEBVR)
|
| blink::WebVRClient* RenderFrameImpl::webVRClient() {
|
| if (!vr_dispatcher_)
|
|
|