| Index: content/child/geofencing/web_geofencing_provider_impl.cc
|
| diff --git a/content/child/geofencing/web_geofencing_provider_impl.cc b/content/child/geofencing/web_geofencing_provider_impl.cc
|
| index 5d78b9810b805d8f9ebb830ae7d131e55ab8322a..5a475a4ebce71c4c251a90f5b6bf488d03a79215 100644
|
| --- a/content/child/geofencing/web_geofencing_provider_impl.cc
|
| +++ b/content/child/geofencing/web_geofencing_provider_impl.cc
|
| @@ -17,6 +17,19 @@ WebGeofencingProviderImpl::WebGeofencingProviderImpl(
|
| WebGeofencingProviderImpl::~WebGeofencingProviderImpl() {
|
| }
|
|
|
| +void WebGeofencingProviderImpl::SetMockProvider(bool service_available) {
|
| + GetDispatcher()->SetMockProvider(service_available);
|
| +}
|
| +
|
| +void WebGeofencingProviderImpl::ClearMockProvider() {
|
| + GetDispatcher()->ClearMockProvider();
|
| +}
|
| +
|
| +void WebGeofencingProviderImpl::SetMockPosition(double latitude,
|
| + double longitude) {
|
| + GetDispatcher()->SetMockPosition(latitude, longitude);
|
| +}
|
| +
|
| void WebGeofencingProviderImpl::registerRegion(
|
| const blink::WebString& regionId,
|
| const blink::WebCircularGeofencingRegion& region,
|
|
|