summaryrefslogtreecommitdiffstats
path: root/hal/fallback
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /hal/fallback
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'hal/fallback')
-rw-r--r--hal/fallback/FallbackBattery.cpp24
-rw-r--r--hal/fallback/FallbackNetwork.cpp25
-rw-r--r--hal/fallback/FallbackProcessPriority.cpp21
-rw-r--r--hal/fallback/FallbackScreenConfiguration.cpp26
-rw-r--r--hal/fallback/FallbackScreenConfiguration.h43
-rw-r--r--hal/fallback/FallbackSensor.cpp19
-rw-r--r--hal/fallback/FallbackVibration.cpp19
7 files changed, 177 insertions, 0 deletions
diff --git a/hal/fallback/FallbackBattery.cpp b/hal/fallback/FallbackBattery.cpp
new file mode 100644
index 0000000000..b4f2fe105a
--- /dev/null
+++ b/hal/fallback/FallbackBattery.cpp
@@ -0,0 +1,24 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set sw=2 ts=8 et ft=cpp : */
+/* 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 "Hal.h"
+#include "mozilla/dom/battery/Constants.h"
+
+namespace mozilla {
+namespace hal_impl {
+
+void EnableBatteryNotifications() {}
+
+void DisableBatteryNotifications() {}
+
+void GetCurrentBatteryInformation(hal::BatteryInformation* aBatteryInfo) {
+ aBatteryInfo->level() = dom::battery::kDefaultLevel;
+ aBatteryInfo->charging() = dom::battery::kDefaultCharging;
+ aBatteryInfo->remainingTime() = dom::battery::kDefaultRemainingTime;
+}
+
+} // namespace hal_impl
+} // namespace mozilla
diff --git a/hal/fallback/FallbackNetwork.cpp b/hal/fallback/FallbackNetwork.cpp
new file mode 100644
index 0000000000..d944b3a579
--- /dev/null
+++ b/hal/fallback/FallbackNetwork.cpp
@@ -0,0 +1,25 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+ * vim: sw=2 ts=8 et :
+ */
+/* 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 "Hal.h"
+#include "mozilla/dom/network/Constants.h"
+
+namespace mozilla {
+namespace hal_impl {
+
+void EnableNetworkNotifications() {}
+
+void DisableNetworkNotifications() {}
+
+void GetCurrentNetworkInformation(hal::NetworkInformation* aNetworkInfo) {
+ aNetworkInfo->type() = dom::network::kDefaultType;
+ aNetworkInfo->isWifi() = dom::network::kDefaultIsWifi;
+ aNetworkInfo->dhcpGateway() = dom::network::kDefaultDHCPGateway;
+}
+
+} // namespace hal_impl
+} // namespace mozilla
diff --git a/hal/fallback/FallbackProcessPriority.cpp b/hal/fallback/FallbackProcessPriority.cpp
new file mode 100644
index 0000000000..e4e6cc65c7
--- /dev/null
+++ b/hal/fallback/FallbackProcessPriority.cpp
@@ -0,0 +1,21 @@
+/* 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 "Hal.h"
+#include "HalLog.h"
+
+using namespace mozilla::hal;
+
+namespace mozilla {
+namespace hal_impl {
+
+bool SetProcessPrioritySupported() { return false; }
+
+void SetProcessPriority(int aPid, ProcessPriority aPriority) {
+ HAL_LOG("FallbackProcessPriority - SetProcessPriority(%d, %s)\n", aPid,
+ ProcessPriorityToString(aPriority));
+}
+
+} // namespace hal_impl
+} // namespace mozilla
diff --git a/hal/fallback/FallbackScreenConfiguration.cpp b/hal/fallback/FallbackScreenConfiguration.cpp
new file mode 100644
index 0000000000..680b9c243e
--- /dev/null
+++ b/hal/fallback/FallbackScreenConfiguration.cpp
@@ -0,0 +1,26 @@
+/* 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 "FallbackScreenConfiguration.h"
+
+namespace mozilla {
+namespace hal_impl {
+
+void EnableScreenConfigurationNotifications() {}
+
+void DisableScreenConfigurationNotifications() {}
+
+void GetCurrentScreenConfiguration(
+ hal::ScreenConfiguration* aScreenConfiguration) {
+ fallback::GetCurrentScreenConfiguration(aScreenConfiguration);
+}
+
+bool LockScreenOrientation(const hal::ScreenOrientation& aOrientation) {
+ return false;
+}
+
+void UnlockScreenOrientation() {}
+
+} // namespace hal_impl
+} // namespace mozilla
diff --git a/hal/fallback/FallbackScreenConfiguration.h b/hal/fallback/FallbackScreenConfiguration.h
new file mode 100644
index 0000000000..cde9c5c6b4
--- /dev/null
+++ b/hal/fallback/FallbackScreenConfiguration.h
@@ -0,0 +1,43 @@
+/* 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/. */
+
+#ifndef mozilla_fallback_FallbackScreenConfiguration_h
+#define mozilla_fallback_FallbackScreenConfiguration_h
+
+#include "Hal.h"
+#include "nsIScreenManager.h"
+#include "nsServiceManagerUtils.h"
+
+namespace mozilla {
+namespace fallback {
+
+inline void GetCurrentScreenConfiguration(
+ hal::ScreenConfiguration* aScreenConfiguration) {
+ nsresult rv;
+ nsCOMPtr<nsIScreenManager> screenMgr =
+ do_GetService("@mozilla.org/gfx/screenmanager;1", &rv);
+ if (NS_FAILED(rv)) {
+ NS_ERROR("Can't find nsIScreenManager!");
+ return;
+ }
+
+ int32_t colorDepth, pixelDepth, x, y, w, h;
+ hal::ScreenOrientation orientation;
+ nsCOMPtr<nsIScreen> screen;
+
+ screenMgr->GetPrimaryScreen(getter_AddRefs(screen));
+ screen->GetRect(&x, &y, &w, &h);
+ screen->GetColorDepth(&colorDepth);
+ screen->GetPixelDepth(&pixelDepth);
+ orientation = w >= h ? hal::eScreenOrientation_LandscapePrimary
+ : hal::eScreenOrientation_PortraitPrimary;
+
+ *aScreenConfiguration = hal::ScreenConfiguration(
+ nsIntRect(x, y, w, h), orientation, 0, colorDepth, pixelDepth);
+}
+
+} // namespace fallback
+} // namespace mozilla
+
+#endif // mozilla_fallback_FallbackScreenConfiguration_h
diff --git a/hal/fallback/FallbackSensor.cpp b/hal/fallback/FallbackSensor.cpp
new file mode 100644
index 0000000000..2ce51904b7
--- /dev/null
+++ b/hal/fallback/FallbackSensor.cpp
@@ -0,0 +1,19 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set sw=2 ts=8 et ft=cpp : */
+/* 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 "mozilla/Hal.h"
+
+using namespace mozilla::hal;
+
+namespace mozilla {
+namespace hal_impl {
+
+void EnableSensorNotifications(SensorType aSensor) {}
+
+void DisableSensorNotifications(SensorType aSensor) {}
+
+} // namespace hal_impl
+} // namespace mozilla
diff --git a/hal/fallback/FallbackVibration.cpp b/hal/fallback/FallbackVibration.cpp
new file mode 100644
index 0000000000..f3b0302d03
--- /dev/null
+++ b/hal/fallback/FallbackVibration.cpp
@@ -0,0 +1,19 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set sw=2 ts=8 et ft=cpp : */
+/* 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 "Hal.h"
+
+using mozilla::hal::WindowIdentifier;
+
+namespace mozilla {
+namespace hal_impl {
+
+void Vibrate(const nsTArray<uint32_t>& pattern, hal::WindowIdentifier&&) {}
+
+void CancelVibrate(hal::WindowIdentifier&&) {}
+
+} // namespace hal_impl
+} // namespace mozilla