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

Side by Side Diff: content/child/geofencing/web_geofencing_provider_impl.cc

Issue 623823002: Chrome side of passing on the service worker registration with geofencing API calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/child/geofencing/web_geofencing_provider_impl.h" 5 #include "content/child/geofencing/web_geofencing_provider_impl.h"
6 6
7 #include "content/child/geofencing/geofencing_dispatcher.h" 7 #include "content/child/geofencing/geofencing_dispatcher.h"
8 #include "content/child/thread_safe_sender.h" 8 #include "content/child/thread_safe_sender.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 WebGeofencingProviderImpl::WebGeofencingProviderImpl( 12 WebGeofencingProviderImpl::WebGeofencingProviderImpl(
13 ThreadSafeSender* thread_safe_sender) 13 ThreadSafeSender* thread_safe_sender)
14 : thread_safe_sender_(thread_safe_sender) { 14 : thread_safe_sender_(thread_safe_sender) {
15 } 15 }
16 16
17 WebGeofencingProviderImpl::~WebGeofencingProviderImpl() { 17 WebGeofencingProviderImpl::~WebGeofencingProviderImpl() {
18 } 18 }
19 19
20 void WebGeofencingProviderImpl::registerRegion( 20 void WebGeofencingProviderImpl::registerRegion(
21 const blink::WebString& regionId, 21 const blink::WebString& regionId,
22 const blink::WebCircularGeofencingRegion& region, 22 const blink::WebCircularGeofencingRegion& region,
23 blink::WebServiceWorkerRegistration* serviceworker,
23 blink::WebGeofencingCallbacks* callbacks) { 24 blink::WebGeofencingCallbacks* callbacks) {
24 GetDispatcher()->RegisterRegion(regionId, region, callbacks); 25 GetDispatcher()->RegisterRegion(regionId, region, serviceworker, callbacks);
25 } 26 }
26 27
27 void WebGeofencingProviderImpl::unregisterRegion( 28 void WebGeofencingProviderImpl::unregisterRegion(
28 const blink::WebString& regionId, 29 const blink::WebString& regionId,
30 blink::WebServiceWorkerRegistration* serviceworker,
29 blink::WebGeofencingCallbacks* callbacks) { 31 blink::WebGeofencingCallbacks* callbacks) {
30 GetDispatcher()->UnregisterRegion(regionId, callbacks); 32 GetDispatcher()->UnregisterRegion(regionId, serviceworker, callbacks);
31 } 33 }
32 34
33 void WebGeofencingProviderImpl::getRegisteredRegions( 35 void WebGeofencingProviderImpl::getRegisteredRegions(
36 blink::WebServiceWorkerRegistration* serviceworker,
34 blink::WebGeofencingRegionsCallbacks* callbacks) { 37 blink::WebGeofencingRegionsCallbacks* callbacks) {
35 GetDispatcher()->GetRegisteredRegions(callbacks); 38 GetDispatcher()->GetRegisteredRegions(serviceworker, callbacks);
36 } 39 }
37 40
38 GeofencingDispatcher* WebGeofencingProviderImpl::GetDispatcher() { 41 GeofencingDispatcher* WebGeofencingProviderImpl::GetDispatcher() {
39 return GeofencingDispatcher::GetOrCreateThreadSpecificInstance( 42 return GeofencingDispatcher::GetOrCreateThreadSpecificInstance(
40 thread_safe_sender_.get()); 43 thread_safe_sender_.get());
41 } 44 }
42 45
43 } // namespace content 46 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698