mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1071686 - Enable creation of an initial displayport on non-B2G platforms. r=mstange
This commit is contained in:
parent
14019a1d6e
commit
cd6a4fa581
@ -88,6 +88,7 @@
|
||||
#include "mozilla/Preferences.h"
|
||||
#include "nsFrameSelection.h"
|
||||
#include "FrameLayerBuilder.h"
|
||||
#include "mozilla/layers/AsyncPanZoomController.h"
|
||||
|
||||
#ifdef MOZ_XUL
|
||||
#include "nsXULPopupManager.h"
|
||||
@ -98,10 +99,6 @@
|
||||
#include "nsTransitionManager.h"
|
||||
#include "RestyleManager.h"
|
||||
|
||||
// Additional includes used on B2G by code in GetOrMaybeCreateDisplayPort().
|
||||
#ifdef MOZ_WIDGET_GONK
|
||||
#include "mozilla/layers/AsyncPanZoomController.h"
|
||||
#endif
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::dom;
|
||||
@ -2734,9 +2731,6 @@ nsLayoutUtils::GetFramesForArea(nsIFrame* aFrame, const nsRect& aRect,
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// This function is only used on B2G, and some compilers complain about
|
||||
// unused static functions, so we need to #ifdef it.
|
||||
#ifdef MOZ_WIDGET_GONK
|
||||
// aScrollFrame and aScrollFrameAsScrollable must be non-nullptr
|
||||
static FrameMetrics
|
||||
CalculateFrameMetricsForDisplayPort(nsIFrame* aScrollFrame,
|
||||
@ -2784,7 +2778,6 @@ CalculateFrameMetricsForDisplayPort(nsIFrame* aScrollFrame,
|
||||
|
||||
return metrics;
|
||||
}
|
||||
#endif
|
||||
|
||||
bool
|
||||
nsLayoutUtils::GetOrMaybeCreateDisplayPort(nsDisplayListBuilder& aBuilder,
|
||||
@ -2804,8 +2797,7 @@ nsLayoutUtils::GetOrMaybeCreateDisplayPort(nsDisplayListBuilder& aBuilder,
|
||||
|
||||
bool haveDisplayPort = GetDisplayPort(content, aOutDisplayport);
|
||||
|
||||
#ifdef MOZ_WIDGET_GONK
|
||||
// On B2G, we perform an optimization where we ensure that at least one
|
||||
// We perform an optimization where we ensure that at least one
|
||||
// async-scrollable frame (i.e. one that WantsAsyncScroll()) has a displayport.
|
||||
// If that's not the case yet, and we are async-scrollable, we will get a
|
||||
// displayport.
|
||||
@ -2834,7 +2826,6 @@ nsLayoutUtils::GetOrMaybeCreateDisplayPort(nsDisplayListBuilder& aBuilder,
|
||||
// Record that the we now have a scrollable display port.
|
||||
aBuilder.SetHaveScrollableDisplayPort();
|
||||
}
|
||||
#endif
|
||||
|
||||
return haveDisplayPort;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user