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

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: fixed layout tests Created 4 years 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 0179a9c1a5568f865c138447966a8f0d0b83418a..1d3e7601c0972941755446dfa071f22f67f1dbbe 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -92,7 +92,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"
@@ -4629,12 +4628,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