Bug 1282408 - add ignore initialization check flag for bool variables from ScrollReflowInput. r=dbaron

MozReview-Commit-ID: 6IDxHLbSkoJ
This commit is contained in:
Andi-Bogdan Postelnicu 2016-07-28 13:57:19 +03:00
parent 79a0735001
commit cb60cc4703

View File

@ -215,15 +215,19 @@ struct MOZ_STACK_CLASS ScrollReflowInput {
// === Filled in by ReflowScrolledFrame ===
nsOverflowAreas mContentsOverflowAreas;
MOZ_INIT_OUTSIDE_CTOR
bool mReflowedContentsWithHScrollbar;
MOZ_INIT_OUTSIDE_CTOR
bool mReflowedContentsWithVScrollbar;
// === Filled in when TryLayout succeeds ===
// The size of the inside-border area
nsSize mInsideBorderSize;
// Whether we decided to show the horizontal scrollbar
MOZ_INIT_OUTSIDE_CTOR
bool mShowHScrollbar;
// Whether we decided to show the vertical scrollbar
MOZ_INIT_OUTSIDE_CTOR
bool mShowVScrollbar;
ScrollReflowInput(nsIScrollableFrame* aFrame,