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

Unified Diff: device/geolocation/geolocation_service_context.cc

Issue 2697473002: Remove last usage functions from HostContentSettingsMap and clean up prefs (Closed)
Patch Set: adjust a comment Created 3 years, 10 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: device/geolocation/geolocation_service_context.cc
diff --git a/device/geolocation/geolocation_service_context.cc b/device/geolocation/geolocation_service_context.cc
index 148b77b6c1ed34a9c8408ebdcd73c8a6ac44237d..8092e3f6f1f3921e16541e16567b171b17d9bbe9 100644
--- a/device/geolocation/geolocation_service_context.cc
+++ b/device/geolocation/geolocation_service_context.cc
@@ -15,10 +15,9 @@ GeolocationServiceContext::GeolocationServiceContext() {}
GeolocationServiceContext::~GeolocationServiceContext() {}
void GeolocationServiceContext::CreateService(
- const base::Closure& update_callback,
mojo::InterfaceRequest<mojom::GeolocationService> request) {
GeolocationServiceImpl* service =
- new GeolocationServiceImpl(std::move(request), this, update_callback);
+ new GeolocationServiceImpl(std::move(request), this);
services_.push_back(service);
if (geoposition_override_)
service->SetOverride(*geoposition_override_.get());

Powered by Google App Engine
This is Rietveld 408576698