Bug 967287 part 2: Adjust indentation after removal of nsPresContext* args. r=mats

This commit is contained in:
Daniel Holbert
2014-02-06 14:07:48 -08:00
parent ab988302aa
commit e23dc237da
6 changed files with 30 additions and 34 deletions

View File

@@ -84,8 +84,7 @@ public:
*/
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
virtual nsresult StealFrame(nsIFrame* aChild,
bool aForceNormal) MOZ_OVERRIDE
virtual nsresult StealFrame(nsIFrame* aChild, bool aForceNormal) MOZ_OVERRIDE
{
NS_ASSERTION(!aForceNormal, "No-one should be passing this in here");

View File

@@ -49,8 +49,7 @@ public:
return frame->GetContentInsertionFrame();
}
virtual nsresult StealFrame(nsIFrame* aChild,
bool aForceNormal) MOZ_OVERRIDE
virtual nsresult StealFrame(nsIFrame* aChild, bool aForceNormal) MOZ_OVERRIDE
{ // nsColumnSetFrame keeps overflow containers in main child list
return nsContainerFrame::StealFrame(aChild, true);
}

View File

@@ -94,8 +94,7 @@ public:
* exists aNextInFlowResult is set to nullptr.
* @return NS_OK if a next-in-flow already exists or is successfully created.
*/
nsresult CreateNextInFlow(nsIFrame* aFrame,
nsIFrame*& aNextInFlowResult);
nsresult CreateNextInFlow(nsIFrame* aFrame, nsIFrame*& aNextInFlowResult);
/**
* Delete aNextInFlow and its next-in-flows.
@@ -475,8 +474,7 @@ protected:
* @param aPrevSibling aFromChild's previous sibling. Must not be null.
* It's an error to push a parent's first child frame
*/
void PushChildren(nsIFrame* aFromChild,
nsIFrame* aPrevSibling);
void PushChildren(nsIFrame* aFromChild, nsIFrame* aPrevSibling);
// ==========================================================================
/*