diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/geolocation/MLSFallback.cpp | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/geolocation/MLSFallback.cpp')
-rw-r--r-- | dom/geolocation/MLSFallback.cpp | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/dom/geolocation/MLSFallback.cpp b/dom/geolocation/MLSFallback.cpp new file mode 100644 index 0000000000..82398a4436 --- /dev/null +++ b/dom/geolocation/MLSFallback.cpp @@ -0,0 +1,78 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "MLSFallback.h" +#include "GeolocationPosition.h" +#include "nsComponentManagerUtils.h" +#include "nsIGeolocationProvider.h" +#include "nsServiceManagerUtils.h" + +NS_IMPL_ISUPPORTS(MLSFallback, nsITimerCallback, nsINamed) + +MLSFallback::MLSFallback(uint32_t delay) : mDelayMs(delay) {} + +MLSFallback::~MLSFallback() = default; + +nsresult MLSFallback::Startup(nsIGeolocationUpdate* aWatcher) { + if (mHandoffTimer || mMLSFallbackProvider) { + return NS_OK; + } + + mUpdateWatcher = aWatcher; + + // No need to schedule a timer callback if there is no startup delay. + if (mDelayMs == 0) { + return CreateMLSFallbackProvider(); + } + + return NS_NewTimerWithCallback(getter_AddRefs(mHandoffTimer), this, mDelayMs, + nsITimer::TYPE_ONE_SHOT); +} + +nsresult MLSFallback::Shutdown() { + mUpdateWatcher = nullptr; + + if (mHandoffTimer) { + mHandoffTimer->Cancel(); + mHandoffTimer = nullptr; + } + + nsresult rv = NS_OK; + if (mMLSFallbackProvider) { + rv = mMLSFallbackProvider->Shutdown(); + mMLSFallbackProvider = nullptr; + } + return rv; +} + +NS_IMETHODIMP +MLSFallback::Notify(nsITimer* aTimer) { return CreateMLSFallbackProvider(); } + +NS_IMETHODIMP +MLSFallback::GetName(nsACString& aName) { + aName.AssignLiteral("MLSFallback"); + return NS_OK; +} + +nsresult MLSFallback::CreateMLSFallbackProvider() { + if (mMLSFallbackProvider || !mUpdateWatcher) { + return NS_OK; + } + + nsresult rv; + mMLSFallbackProvider = + do_CreateInstance("@mozilla.org/geolocation/mls-provider;1", &rv); + NS_ENSURE_SUCCESS(rv, rv); + + if (mMLSFallbackProvider) { + rv = mMLSFallbackProvider->Startup(); + if (NS_SUCCEEDED(rv)) { + mMLSFallbackProvider->Watch(mUpdateWatcher); + } + } + mUpdateWatcher = nullptr; + return rv; +} |