Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e0f261728521912c180d26ce5a63c92fbadbf956 |
| --- /dev/null |
| +++ b/content/browser/geolocation/geolocation_service_impl.h |
| @@ -0,0 +1,54 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// 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" |
| + |
| +#ifndef CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |
| +#define CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |
| + |
| +namespace content { |
| + |
| +class GeolocationProvider; |
| +class GeolocationServiceImplContext; |
| + |
| +// Implements the GeolocationService Mojo interface. |
| +class GeolocationServiceImpl : public mojo::InterfaceImpl<GeolocationService> { |
|
Michael van Ouwerkerk
2014/10/08 14:13:08
Who owns this service? How many instances are ther
blundell
2014/10/09 08:32:52
The service was bound to the lifetime of the pipe
|
| + public: |
| + // |context| is the geolocation context in which created services should |
| + // operate. |on_location_update_callback| will be called when services send |
| + // location updates to their clients. |
| + static void Create(GeolocationServiceImplContext* context, |
| + const base::Closure& on_location_update_callback, |
|
Michael van Ouwerkerk
2014/10/08 14:13:08
Nit: drop the on_ prefix. Or even: location_callba
blundell
2014/10/09 08:32:52
Changed to update_callback.
|
| + mojo::InterfaceRequest<GeolocationService> request); |
| + |
| + // Pauses and resumes sending updates to the client of this instance. |
| + void PauseUpdates(); |
| + void ResumeUpdates(); |
| + |
| + private: |
| + GeolocationServiceImpl(GeolocationServiceImplContext* context, |
| + const base::Closure& on_location_update_callback); |
| + virtual ~GeolocationServiceImpl(); |
| + |
| + // GeolocationService: |
| + virtual void StartUpdating(bool high_accuracy) OVERRIDE; |
| + |
| + void StartListeningForUpdates(); |
| + void OnLocationUpdate(const Geoposition& position); |
| + |
| + // Must outlive this object. |
| + GeolocationServiceImplContext* context_; |
|
Michael van Ouwerkerk
2014/10/08 14:13:08
I'm having a slow day. Service outlives context or
blundell
2014/10/09 08:32:52
Before, either could outlive the other, which as y
|
| + scoped_ptr<GeolocationProvider::Subscription> geolocation_subscription_; |
| + base::Closure on_location_update_callback_; |
| + |
| + // Whether this instance is currently observing location updates with high |
| + // accuracy. |
| + bool high_accuracy_; |
| +}; |
|
Michael van Ouwerkerk
2014/10/08 14:13:08
Does this need DISALLOW_COPY_AND_ASSIGN?
blundell
2014/10/09 08:32:52
Done.
|
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |