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

Unified Diff: third_party/WebKit/Source/modules/geofencing/Geofencing.cpp

Issue 1972733002: Delete geofencing implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark histogram suffix as obsolete Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/modules/geofencing/Geofencing.h ('k') | third_party/WebKit/Source/modules/geofencing/Geofencing.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698