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

Side by Side Diff: content/browser/geofencing/geofencing_provider.h

Issue 586163003: Basic implementation of GeofencingManager class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@geofencing5
Patch Set: minor cleanup Created 6 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_PROVIDER_H_
6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_PROVIDER_H_
7
8 #include "base/callback_forward.h"
9 #include "content/common/geofencing_status.h"
10
11 namespace blink {
12 struct WebCircularGeofencingRegion;
13 };
14
15 namespace content {
16
17 class GeofencingProvider {
18 public:
19 // Callback that gets called on completion of registering a new region. The
20 // status indicates success or failure, and in case of success, an id to use
21 // to later unregister the region is passed as |registration_id|. If
22 // registration failed, providers should set |registration_id| to -1.
23 typedef base::Callback<void(GeofencingStatus, int registration_id)>
24 RegisterCallback;
25
26 virtual ~GeofencingProvider() {}
27
28 // Called by |GeofencingManager| to register a new fence. GeofencingManager is
29 // responsible for handling things like duplicate regions, so platform
30 // specific implementations shouldn't have to worry about things like that.
31 // Also GeofencingManager should be making sure the total number of geofences
32 // that is registered with the platform specific provider does not exceed the
33 // number of regions supported by the platform, although that isn't
34 // implemented yet.
35 virtual void RegisterRegion(const blink::WebCircularGeofencingRegion& region,
36 const RegisterCallback& callback) = 0;
37
38 // Called by |GeofencingManager| to unregister an existing registration. Will
39 // only be called once for each registration.
40 virtual void UnregisterRegion(int registration_id) = 0;
41 };
42
43 } // namespace content
44
45 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_PROVIDER_H_
OLDNEW
« no previous file with comments | « content/browser/geofencing/geofencing_manager_unittest.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698