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

Unified Diff: device/bluetooth/test/fake_bluetooth.cc

Issue 2851173004: Eliminate bind callback that doesn't take a BindSourceInfo parameter. (Closed)
Patch Set: . Created 3 years, 8 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
« no previous file with comments | « device/bluetooth/test/fake_bluetooth.h ('k') | device/gamepad/gamepad_monitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/test/fake_bluetooth.cc
diff --git a/device/bluetooth/test/fake_bluetooth.cc b/device/bluetooth/test/fake_bluetooth.cc
index 08c6615c208933c6cea416a9293cf9a81a2e92ce..92d42cdc1b091662f796cc5f921db1d75bb80ef2 100644
--- a/device/bluetooth/test/fake_bluetooth.cc
+++ b/device/bluetooth/test/fake_bluetooth.cc
@@ -21,7 +21,8 @@ FakeBluetooth::FakeBluetooth()
FakeBluetooth::~FakeBluetooth() {}
// static
-void FakeBluetooth::Create(mojom::FakeBluetoothRequest request) {
+void FakeBluetooth::Create(const service_manager::BindSourceInfo& source_info,
+ mojom::FakeBluetoothRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<FakeBluetooth>(),
std::move(request));
}
« no previous file with comments | « device/bluetooth/test/fake_bluetooth.h ('k') | device/gamepad/gamepad_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698