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

Unified Diff: content/browser/geolocation/geolocation_service_impl.h

Issue 1411063007: Add mojo::StrongBindingSet and use it in GeolocationServiceContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/browser/geolocation/geolocation_service_impl.h
diff --git a/content/browser/geolocation/geolocation_service_impl.h b/content/browser/geolocation/geolocation_service_impl.h
index 45b37e7fd601c21e3b20c4682b559c7d8d5c284c..c54dc12ec0fec1f8e7ea50342086a4f247cb6feb 100644
--- a/content/browser/geolocation/geolocation_service_impl.h
+++ b/content/browser/geolocation/geolocation_service_impl.h
@@ -3,28 +3,23 @@
// found in the LICENSE file.
#include "base/memory/scoped_ptr.h"
-#include "content/browser/geolocation/geolocation_provider_impl.h"
#include "content/common/geolocation_service.mojom.h"
-#include "content/public/common/mojo_geoposition.mojom.h"
-#include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"
+#include "content/public/browser/geolocation_provider.h"
+#include "content/public/common/geoposition.h"
Michael van Ouwerkerk 2015/11/11 11:20:56 nit: this can be forward declared. It is also incl
Sam McNally 2015/11/13 00:49:59 Done.
#ifndef CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_
#define CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_
namespace content {
-
-class GeolocationProvider;
class GeolocationServiceContext;
+class RenderFrameHost;
// Implements the GeolocationService Mojo interface.
class GeolocationServiceImpl : public GeolocationService {
public:
- // |context| must outlive this object. |update_callback| will be called when
- // location updates are sent, allowing the client to know when the service
- // is being used.
- GeolocationServiceImpl(mojo::InterfaceRequest<GeolocationService> request,
- GeolocationServiceContext* context,
- const base::Closure& update_callback);
+ // |context| must outlive this object.
+ GeolocationServiceImpl(GeolocationServiceContext* context,
+ RenderFrameHost* render_frame_host);
~GeolocationServiceImpl() override;
// Starts listening for updates.
@@ -35,47 +30,36 @@ class GeolocationServiceImpl : public GeolocationService {
void ResumeUpdates();
// Enables and disables geolocation override.
- void SetOverride(const Geoposition& position);
+ void OnOverrideSet();
void ClearOverride();
private:
- typedef mojo::Callback<void(MojoGeopositionPtr)> PositionCallback;
+ using PositionCallback = QueryNextPositionCallback;
// GeolocationService:
void SetHighAccuracy(bool high_accuracy) override;
void QueryNextPosition(const PositionCallback& callback) override;
- void OnConnectionError();
-
void OnLocationUpdate(const Geoposition& position);
void ReportCurrentPosition();
- // The binding between this object and the other end of the pipe.
- mojo::Binding<GeolocationService> binding_;
+ void ReportPermissionUsage();
// Owns this object.
- GeolocationServiceContext* context_;
+ GeolocationServiceContext* const context_;
+ const int render_process_id_;
+ const int render_frame_id_;
scoped_ptr<GeolocationProvider::Subscription> geolocation_subscription_;
- // Callback that allows the instantiator of this class to be notified on
- // position updates.
- base::Closure update_callback_;
-
// The callback passed to QueryNextPosition.
PositionCallback position_callback_;
- // Valid iff SetOverride() has been called and ClearOverride() has not
- // subsequently been called.
- Geoposition position_override_;
-
- MojoGeoposition current_position_;
+ MojoGeopositionPtr current_position_;
// Whether this instance is currently observing location updates with high
// accuracy.
bool high_accuracy_;
- bool has_position_to_report_;
-
DISALLOW_COPY_AND_ASSIGN(GeolocationServiceImpl);
};

Powered by Google App Engine
This is Rietveld 408576698