| Index: third_party/WebKit/Source/modules/geofencing/Geofencing.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geofencing/Geofencing.cpp b/third_party/WebKit/Source/modules/geofencing/Geofencing.cpp
|
| deleted file mode 100644
|
| index 56e4f694fa81d9ef63a3804be62f1fef587b69ac..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/modules/geofencing/Geofencing.cpp
|
| +++ /dev/null
|
| @@ -1,103 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "modules/geofencing/Geofencing.h"
|
| -
|
| -#include "bindings/core/v8/CallbackPromiseAdapter.h"
|
| -#include "bindings/core/v8/ScriptPromise.h"
|
| -#include "bindings/core/v8/ScriptPromiseResolver.h"
|
| -#include "core/dom/DOMException.h"
|
| -#include "core/dom/ExceptionCode.h"
|
| -#include "modules/geofencing/CircularGeofencingRegion.h"
|
| -#include "modules/geofencing/GeofencingError.h"
|
| -#include "modules/geofencing/GeofencingRegion.h"
|
| -#include "modules/serviceworkers/ServiceWorkerRegistration.h"
|
| -#include "public/platform/Platform.h"
|
| -#include "public/platform/WebCircularGeofencingRegion.h"
|
| -#include "public/platform/WebGeofencingProvider.h"
|
| -#include "public/platform/WebGeofencingRegistration.h"
|
| -#include "wtf/OwnPtr.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| -
|
| -namespace blink {
|
| -
|
| -namespace {
|
| -
|
| -// For CallbackPromiseAdapter to convert a WebVector of regions to a HeapVector.
|
| -class RegionArray {
|
| -public:
|
| - using WebType = const WebVector<WebGeofencingRegistration>&;
|
| - static HeapVector<Member<GeofencingRegion>> take(ScriptPromiseResolver* resolver, const WebVector<WebGeofencingRegistration>& webRegions)
|
| - {
|
| - HeapVector<Member<GeofencingRegion>> regions;
|
| - for (size_t i = 0; i < webRegions.size(); ++i)
|
| - regions.append(CircularGeofencingRegion::create(webRegions[i].id, webRegions[i].region));
|
| - return regions;
|
| - }
|
| -
|
| -private:
|
| - RegionArray();
|
| -};
|
| -
|
| -} // namespace
|
| -
|
| -Geofencing::Geofencing(ServiceWorkerRegistration* registration)
|
| - : m_registration(registration)
|
| -{
|
| -}
|
| -
|
| -ScriptPromise Geofencing::registerRegion(ScriptState* scriptState, GeofencingRegion* region)
|
| -{
|
| - WebGeofencingProvider* provider = Platform::current()->geofencingProvider();
|
| - if (!provider)
|
| - return ScriptPromise::rejectWithDOMException(scriptState, DOMException::create(NotSupportedError));
|
| -
|
| - ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
|
| - ScriptPromise promise = resolver->promise();
|
| - WebGeofencingCallbacks* callbacks = new CallbackPromiseAdapter<void, GeofencingError>(resolver);
|
| - WebServiceWorkerRegistration* serviceWorkerRegistration = nullptr;
|
| - if (m_registration)
|
| - serviceWorkerRegistration = m_registration->webRegistration();
|
| - provider->registerRegion(region->id(), toCircularGeofencingRegion(region)->webRegion(), serviceWorkerRegistration, callbacks);
|
| - return promise;
|
| -}
|
| -
|
| -ScriptPromise Geofencing::unregisterRegion(ScriptState* scriptState, const String& regionId)
|
| -{
|
| - WebGeofencingProvider* provider = Platform::current()->geofencingProvider();
|
| - if (!provider)
|
| - return ScriptPromise::rejectWithDOMException(scriptState, DOMException::create(NotSupportedError));
|
| -
|
| - ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
|
| - ScriptPromise promise = resolver->promise();
|
| - WebGeofencingCallbacks* callbacks = new CallbackPromiseAdapter<void, GeofencingError>(resolver);
|
| - WebServiceWorkerRegistration* serviceWorkerRegistration = nullptr;
|
| - if (m_registration)
|
| - serviceWorkerRegistration = m_registration->webRegistration();
|
| - provider->unregisterRegion(regionId, serviceWorkerRegistration, callbacks);
|
| - return promise;
|
| -}
|
| -
|
| -ScriptPromise Geofencing::getRegisteredRegions(ScriptState* scriptState) const
|
| -{
|
| - WebGeofencingProvider* provider = Platform::current()->geofencingProvider();
|
| - if (!provider)
|
| - return ScriptPromise::rejectWithDOMException(scriptState, DOMException::create(NotSupportedError));
|
| -
|
| - ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
|
| - ScriptPromise promise = resolver->promise();
|
| - WebGeofencingRegionsCallbacks* callbacks = new CallbackPromiseAdapter<RegionArray, GeofencingError>(resolver);
|
| - WebServiceWorkerRegistration* serviceWorkerRegistration = nullptr;
|
| - if (m_registration)
|
| - serviceWorkerRegistration = m_registration->webRegistration();
|
| - provider->getRegisteredRegions(serviceWorkerRegistration, callbacks);
|
| - return promise;
|
| -}
|
| -
|
| -DEFINE_TRACE(Geofencing)
|
| -{
|
| - visitor->trace(m_registration);
|
| -}
|
| -
|
| -} // namespace blink
|
|
|