Back out changeset b683bb3f22a1 (Bug 1447483) for not landing with all the files. r=me on a CLOSED TREE

This reverts commit 1808914126bb9f9e4a82d2c3d7ac961885fe7d62.

MozReview-Commit-ID: 5skESBseEvo
This commit is contained in:
Emilio Cobos Álvarez
2018-03-22 20:04:20 +01:00
parent 1f5d8de5cc
commit 97286b35c8
395 changed files with 4956 additions and 3461 deletions

View File

@@ -35,9 +35,9 @@ using namespace mozilla;
using namespace mozilla::dom;
nsIFrame*
NS_NewNumberControlFrame(nsIPresShell* aPresShell, ComputedStyle* aStyle)
NS_NewNumberControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
{
return new (aPresShell) nsNumberControlFrame(aStyle);
return new (aPresShell) nsNumberControlFrame(aContext);
}
NS_IMPL_FRAMEARENA_HELPERS(nsNumberControlFrame)
@@ -48,8 +48,8 @@ NS_QUERYFRAME_HEAD(nsNumberControlFrame)
NS_QUERYFRAME_ENTRY(nsIFormControlFrame)
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
nsNumberControlFrame::nsNumberControlFrame(ComputedStyle* aStyle)
: nsContainerFrame(aStyle, kClassID)
nsNumberControlFrame::nsNumberControlFrame(nsStyleContext* aContext)
: nsContainerFrame(aContext, kClassID)
, mHandlingInputEvent(false)
{
}