summaryrefslogtreecommitdiff
path: root/gfx/layers/ipc
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-12-27 06:58:56 +0000
committerMoonchild <moonchild@palemoon.org>2020-12-27 06:58:56 +0000
commit8d4456c797eea9236f4d84cdb23d85ce670152dc (patch)
tree5328170540665a789e1d857957e433f253849f8b /gfx/layers/ipc
parentae2a160348562dfa5361f1e68226365b240c9597 (diff)
downloaduxp-8d4456c797eea9236f4d84cdb23d85ce670152dc.tar.gz
Issue #1053 - Part 3a: Remove Android conditionals from /gfx
Diffstat (limited to 'gfx/layers/ipc')
-rw-r--r--gfx/layers/ipc/CompositorBridgeParent.cpp15
-rw-r--r--gfx/layers/ipc/RemoteContentController.cpp10
2 files changed, 1 insertions, 24 deletions
diff --git a/gfx/layers/ipc/CompositorBridgeParent.cpp b/gfx/layers/ipc/CompositorBridgeParent.cpp
index e6bf2d991a..25ac10130d 100644
--- a/gfx/layers/ipc/CompositorBridgeParent.cpp
+++ b/gfx/layers/ipc/CompositorBridgeParent.cpp
@@ -369,16 +369,6 @@ CompositorVsyncScheduler::ScheduleComposition()
if (mAsapScheduling) {
// Used only for performance testing purposes
PostCompositeTask(TimeStamp::Now());
-#ifdef MOZ_WIDGET_ANDROID
- } else if (mNeedsComposite >= 2 && mIsObservingVsync) {
- // uh-oh, we already requested a composite at least twice so far, and a
- // composite hasn't happened yet. It is possible that the vsync observation
- // is blocked on the main thread, so let's just composite ASAP and not
- // wait for the vsync. Note that this should only ever happen on Fennec
- // because there content runs in the same process as the compositor, and so
- // content can actually block the main thread in this process.
- PostCompositeTask(TimeStamp::Now());
-#endif
} else {
SetNeedsComposite();
}
@@ -953,11 +943,6 @@ CompositorBridgeParent::ResumeComposition()
MonitorAutoLock lock(mResumeCompositionMonitor);
if (!mCompositor->Resume()) {
-#ifdef MOZ_WIDGET_ANDROID
- // We can't get a surface. This could be because the activity changed between
- // the time resume was scheduled and now.
- __android_log_print(ANDROID_LOG_INFO, "CompositorBridgeParent", "Unable to renew compositor surface; remaining in paused state");
-#endif
lock.NotifyAll();
return;
}
diff --git a/gfx/layers/ipc/RemoteContentController.cpp b/gfx/layers/ipc/RemoteContentController.cpp
index 54a08eed3d..d71476a780 100644
--- a/gfx/layers/ipc/RemoteContentController.cpp
+++ b/gfx/layers/ipc/RemoteContentController.cpp
@@ -18,9 +18,6 @@
#include "mozilla/gfx/GPUProcessManager.h"
#include "mozilla/Unused.h"
#include "Units.h"
-#ifdef MOZ_WIDGET_ANDROID
-#include "AndroidBridge.h"
-#endif
namespace mozilla {
namespace layers {
@@ -90,8 +87,7 @@ RemoteContentController::HandleTap(TapType aTapType,
if (NS_IsMainThread()) {
HandleTapOnMainThread(aTapType, aPoint, aModifiers, aGuid, aInputBlockId);
} else {
- // We don't want to get the TabParent or call TabParent::SendHandleTap() from a non-main thread (this might happen
- // on Android, where this is called from the Java UI thread)
+ // We don't want to get the TabParent or call TabParent::SendHandleTap() from a non-main thread
NS_DispatchToMainThread(NewRunnableMethod<TapType, LayoutDevicePoint, Modifiers, ScrollableLayerGuid, uint64_t>
(this, &RemoteContentController::HandleTapOnMainThread, aTapType, aPoint, aModifiers, aGuid, aInputBlockId));
}
@@ -139,12 +135,8 @@ RemoteContentController::NotifyPinchGesture(PinchGestureInput::PinchGestureType
void
RemoteContentController::PostDelayedTask(already_AddRefed<Runnable> aTask, int aDelayMs)
{
-#ifdef MOZ_WIDGET_ANDROID
- AndroidBridge::Bridge()->PostTaskToUiThread(Move(aTask), aDelayMs);
-#else
(MessageLoop::current() ? MessageLoop::current() : mCompositorThread)->
PostDelayedTask(Move(aTask), aDelayMs);
-#endif
}
bool