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

Unified Diff: device/geolocation/geolocation_service_context.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/geolocation/geolocation_service_context.h ('k') | device/vr/vr_service_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/geolocation/geolocation_service_context.cc
diff --git a/device/geolocation/geolocation_service_context.cc b/device/geolocation/geolocation_service_context.cc
index b1bb14bd9f5e807ff371ed9b5fedbc369494efdf..c8546a44358301ac492729a7b2884f3529a83fdf 100644
--- a/device/geolocation/geolocation_service_context.cc
+++ b/device/geolocation/geolocation_service_context.cc
@@ -16,7 +16,8 @@ GeolocationServiceContext::GeolocationServiceContext() {}
GeolocationServiceContext::~GeolocationServiceContext() {}
void GeolocationServiceContext::CreateService(
- mojo::InterfaceRequest<mojom::GeolocationService> request) {
+ const service_manager::BindSourceInfo& source_info,
+ mojom::GeolocationServiceRequest request) {
GeolocationServiceImpl* service =
new GeolocationServiceImpl(std::move(request), this);
services_.push_back(base::WrapUnique<GeolocationServiceImpl>(service));
« no previous file with comments | « device/geolocation/geolocation_service_context.h ('k') | device/vr/vr_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698