Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2864)

Unified Diff: content/renderer/render_frame_impl.cc

Issue 2565913002: [Onion Soup] Move WebBluetoothImpl from //content/renderer/bluetooth to Blink's bluetooth module (Closed)
Patch Set: renamed BluetoothUUID.typemap to Bluetooth.typemap Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index c424e70f7b106477e6c5b59c00aa17763921813e..2b617a46b205f9886f7b906a612e65d844884c1d 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -91,7 +91,6 @@
#include "content/public/renderer/render_frame_observer.h"
#include "content/public/renderer/renderer_ppapi_host.h"
#include "content/renderer/accessibility/render_accessibility_impl.h"
-#include "content/renderer/bluetooth/web_bluetooth_impl.h"
#include "content/renderer/browser_plugin/browser_plugin.h"
#include "content/renderer/browser_plugin/browser_plugin_manager.h"
#include "content/renderer/child_frame_compositing_helper.h"
@@ -4679,12 +4678,6 @@ void RenderFrameImpl::unregisterProtocolHandler(const WebString& scheme,
user_gesture));
}
-blink::WebBluetooth* RenderFrameImpl::bluetooth() {
- if (!bluetooth_.get())
- bluetooth_.reset(new WebBluetoothImpl(GetRemoteInterfaces()));
- return bluetooth_.get();
-}
-
void RenderFrameImpl::didSerializeDataForFrame(
const WebCString& data,
WebFrameSerializerClient::FrameSerializationStatus status) {

Powered by Google App Engine
This is Rietveld 408576698