| OLD | NEW |
| 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::SetMockProvider(bool service_available) { |
| 21 GetDispatcher()->SetMockProvider(service_available); |
| 22 } |
| 23 |
| 24 void WebGeofencingProviderImpl::ClearMockProvider() { |
| 25 GetDispatcher()->ClearMockProvider(); |
| 26 } |
| 27 |
| 28 void WebGeofencingProviderImpl::SetMockPosition(double latitude, |
| 29 double longitude) { |
| 30 GetDispatcher()->SetMockPosition(latitude, longitude); |
| 31 } |
| 32 |
| 20 void WebGeofencingProviderImpl::registerRegion( | 33 void WebGeofencingProviderImpl::registerRegion( |
| 21 const blink::WebString& regionId, | 34 const blink::WebString& regionId, |
| 22 const blink::WebCircularGeofencingRegion& region, | 35 const blink::WebCircularGeofencingRegion& region, |
| 23 blink::WebServiceWorkerRegistration* service_worker_registration, | 36 blink::WebServiceWorkerRegistration* service_worker_registration, |
| 24 blink::WebGeofencingCallbacks* callbacks) { | 37 blink::WebGeofencingCallbacks* callbacks) { |
| 25 GetDispatcher()->RegisterRegion( | 38 GetDispatcher()->RegisterRegion( |
| 26 regionId, region, service_worker_registration, callbacks); | 39 regionId, region, service_worker_registration, callbacks); |
| 27 } | 40 } |
| 28 | 41 |
| 29 void WebGeofencingProviderImpl::unregisterRegion( | 42 void WebGeofencingProviderImpl::unregisterRegion( |
| 30 const blink::WebString& regionId, | 43 const blink::WebString& regionId, |
| 31 blink::WebServiceWorkerRegistration* service_worker_registration, | 44 blink::WebServiceWorkerRegistration* service_worker_registration, |
| 32 blink::WebGeofencingCallbacks* callbacks) { | 45 blink::WebGeofencingCallbacks* callbacks) { |
| 33 GetDispatcher()->UnregisterRegion( | 46 GetDispatcher()->UnregisterRegion( |
| 34 regionId, service_worker_registration, callbacks); | 47 regionId, service_worker_registration, callbacks); |
| 35 } | 48 } |
| 36 | 49 |
| 37 void WebGeofencingProviderImpl::getRegisteredRegions( | 50 void WebGeofencingProviderImpl::getRegisteredRegions( |
| 38 blink::WebServiceWorkerRegistration* service_worker_registration, | 51 blink::WebServiceWorkerRegistration* service_worker_registration, |
| 39 blink::WebGeofencingRegionsCallbacks* callbacks) { | 52 blink::WebGeofencingRegionsCallbacks* callbacks) { |
| 40 GetDispatcher()->GetRegisteredRegions(service_worker_registration, callbacks); | 53 GetDispatcher()->GetRegisteredRegions(service_worker_registration, callbacks); |
| 41 } | 54 } |
| 42 | 55 |
| 43 GeofencingDispatcher* WebGeofencingProviderImpl::GetDispatcher() { | 56 GeofencingDispatcher* WebGeofencingProviderImpl::GetDispatcher() { |
| 44 return GeofencingDispatcher::GetOrCreateThreadSpecificInstance( | 57 return GeofencingDispatcher::GetOrCreateThreadSpecificInstance( |
| 45 thread_safe_sender_.get()); | 58 thread_safe_sender_.get()); |
| 46 } | 59 } |
| 47 | 60 |
| 48 } // namespace content | 61 } // namespace content |
| OLD | NEW |