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

Unified Diff: device/bluetooth/adapter_factory.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/adapter_factory.h ('k') | device/bluetooth/test/fake_bluetooth.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/adapter_factory.cc
diff --git a/device/bluetooth/adapter_factory.cc b/device/bluetooth/adapter_factory.cc
index b214d21b45afdbe26f0cf924622810e22ccbaabd..535ddb15987dcee506b07371204a11fe1a1c8c1a 100644
--- a/device/bluetooth/adapter_factory.cc
+++ b/device/bluetooth/adapter_factory.cc
@@ -16,7 +16,8 @@ AdapterFactory::AdapterFactory() : weak_ptr_factory_(this) {}
AdapterFactory::~AdapterFactory() {}
// static
-void AdapterFactory::Create(mojom::AdapterFactoryRequest request) {
+void AdapterFactory::Create(const service_manager::BindSourceInfo& source_info,
+ mojom::AdapterFactoryRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<AdapterFactory>(),
std::move(request));
}
« no previous file with comments | « device/bluetooth/adapter_factory.h ('k') | device/bluetooth/test/fake_bluetooth.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698