author | Emilio Cobos Álvarez <emilio@crisal.io> |
Tue, 10 Jan 2017 18:55:42 -0800 | |
changeset 328824 | e3154c7c83c1e9d15f30fb3194840c18b96a6eee |
parent 328823 | c5bce4cd684af6b0042ac3bbb0a260f2e770f33c |
child 328825 | 4c14354de76ce8d50300f0d8121715d13898b01e |
push id | 85547 |
push user | dholbert@mozilla.com |
push date | Wed, 11 Jan 2017 02:56:18 +0000 |
treeherder | mozilla-inbound@e3154c7c83c1 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | dholbert |
milestone | 53.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/layout/generic/ReflowInput.h +++ b/layout/generic/ReflowInput.h @@ -676,20 +676,20 @@ public: * @param aFrame The frame for whose reflow state is being constructed. * @param aRenderingContext The rendering context to be used for measurements. * @param aAvailableSpace See comments for availableHeight and availableWidth * members. * @param aFlags A set of flags used for additional boolean parameters (see * below). */ ReflowInput(nsPresContext* aPresContext, - nsIFrame* aFrame, - nsRenderingContext* aRenderingContext, - const mozilla::LogicalSize& aAvailableSpace, - uint32_t aFlags = 0); + nsIFrame* aFrame, + nsRenderingContext* aRenderingContext, + const mozilla::LogicalSize& aAvailableSpace, + uint32_t aFlags = 0); /** * Initialize a reflow state for a child frame's reflow. Some parts of the * state are copied from the parent's reflow state. The remainder is computed. * * @param aPresContext Must be equal to aFrame->PresContext(). * @param aParentReflowInput A reference to an ReflowInput object that * is to be the parent of this object. @@ -698,21 +698,21 @@ public: * members. * @param aContainingBlockSize An optional size, in app units, specifying * the containing block size to use instead of the default which is * to use the aAvailableSpace. * @param aFlags A set of flags used for additional boolean parameters (see * below). */ ReflowInput(nsPresContext* aPresContext, - const ReflowInput& aParentReflowInput, - nsIFrame* aFrame, - const mozilla::LogicalSize& aAvailableSpace, - const mozilla::LogicalSize* aContainingBlockSize = nullptr, - uint32_t aFlags = 0); + const ReflowInput& aParentReflowInput, + nsIFrame* aFrame, + const mozilla::LogicalSize& aAvailableSpace, + const mozilla::LogicalSize* aContainingBlockSize = nullptr, + uint32_t aFlags = 0); // Values for |aFlags| passed to constructor enum { // Indicates that the parent of this reflow state is "fake" (see // mDummyParentReflowInput in mFlags). DUMMY_PARENT_REFLOW_STATE = (1<<0), // Indicates that the calling function will initialize the reflow state, and