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

Side by Side Diff: public/platform/WebGeofencingProvider.h

Issue 464073002: Pass through geofencing API calls to the content layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add regionType Created 6 years, 4 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 WebGeofencingProvider_h
6 #define WebGeofencingProvider_h
7
8 #include "public/platform/WebCallbacks.h"
9 #include "public/platform/WebVector.h"
10
11 namespace blink {
12
13 struct WebGeofencingError;
14 class WebGeofencingRegion;
15 class WebString;
16
17 typedef WebCallbacks<WebGeofencingError, WebGeofencingError> WebGeofencingCallba cks;
18 typedef WebCallbacks<WebVector<WebGeofencingRegion>, WebGeofencingError> WebGeof encingRegionsCallbacks;
19
20 class WebGeofencingProvider {
21 public:
22 virtual ~WebGeofencingProvider() { }
23
24 // Registers a region. The provider must always pass null to onSuccess.
25 // Ownership of the WebGeofencingCallbacks is transferred to the client.
26 // FIXME: celanup the callback type to not have a success type.
27 virtual void registerRegion(const WebGeofencingRegion&, WebGeofencingCallbac ks*) = 0;
28
29 // Unregisters a region. The provider must always pass null to onSuccess.
30 // Ownership of the WebGeofencingCallbacks is transferred to the client.
31 // FIXME: celanup the callback type to not have a success type.
32 virtual void unregisterRegion(const WebString& regionId, WebGeofencingCallba cks*) = 0;
33
34 // Returns all the currently registered regions.
35 // Ownership of the WebGeofencingCallbacks is transferred to the client.
36 virtual void getRegisteredRegions(WebGeofencingRegionsCallbacks*) = 0;
37 };
38
39 } // namespace blink
40
41 #endif // WebGeofencingProvider_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698