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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 1775953004: bluetooth: Move writeValue to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Moar cleanup Created 4 years, 9 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 82e5f3c7d7c56356a2a91f83b494eee776317cac..5bd74b4de9c07cbe3b599aaf274d1926ed8e00fb 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -4338,7 +4338,8 @@ blink::WebBluetooth* RenderFrameImpl::bluetooth() {
// ChildThreadImpl::current() is null in some tests.
if (!bluetooth_ && ChildThreadImpl::current()) {
bluetooth_.reset(new WebBluetoothImpl(
- ChildThreadImpl::current()->thread_safe_sender(), routing_id_));
+ ChildThreadImpl::current()->thread_safe_sender(),
+ ChildThreadImpl::current()->service_registry(), routing_id_));
}
return bluetooth_.get();

Powered by Google App Engine
This is Rietveld 408576698