| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index b8eba4f5ba5ea03baac649b5dea2f92cde2eece7..4cbcaf9b2963b2b59a74aef71d83d62d766cb250 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -42,7 +42,6 @@
|
| #include "content/child/background_sync/background_sync_provider.h"
|
| #include "content/child/child_thread_impl.h"
|
| #include "content/child/content_child_helpers.h"
|
| -#include "content/child/geofencing/web_geofencing_provider_impl.h"
|
| #include "content/child/notifications/notification_dispatcher.h"
|
| #include "content/child/notifications/notification_manager.h"
|
| #include "content/child/permissions/permission_dispatcher.h"
|
| @@ -384,8 +383,6 @@ BlinkPlatformImpl::BlinkPlatformImpl(
|
| void BlinkPlatformImpl::InternalInit() {
|
| // ChildThread may not exist in some tests.
|
| if (ChildThreadImpl::current()) {
|
| - geofencing_provider_.reset(new WebGeofencingProviderImpl(
|
| - ChildThreadImpl::current()->thread_safe_sender()));
|
| thread_safe_sender_ = ChildThreadImpl::current()->thread_safe_sender();
|
| notification_dispatcher_ =
|
| ChildThreadImpl::current()->notification_dispatcher();
|
| @@ -862,10 +859,6 @@ blink::WebCrypto* BlinkPlatformImpl::crypto() {
|
| return &web_crypto_;
|
| }
|
|
|
| -blink::WebGeofencingProvider* BlinkPlatformImpl::geofencingProvider() {
|
| - return geofencing_provider_.get();
|
| -}
|
| -
|
| blink::WebNotificationManager*
|
| BlinkPlatformImpl::notificationManager() {
|
| if (!thread_safe_sender_.get() || !notification_dispatcher_.get())
|
|
|