Fix order of member variables in a couple of initializer lists

This commit is contained in:
Fedor 2019-05-20 09:00:58 +03:00
parent c3a6da32b7
commit 971a7a8048
2 changed files with 2 additions and 2 deletions

View File

@ -161,13 +161,13 @@ imgFrame::imgFrame()
: mMonitor("imgFrame") : mMonitor("imgFrame")
, mDecoded(0, 0, 0, 0) , mDecoded(0, 0, 0, 0)
, mLockCount(0) , mLockCount(0)
, mHasNoAlpha(false)
, mAborted(false) , mAborted(false)
, mFinished(false) , mFinished(false)
, mOptimizable(false) , mOptimizable(false)
, mTimeout(FrameTimeout::FromRawMilliseconds(100)) , mTimeout(FrameTimeout::FromRawMilliseconds(100))
, mDisposalMethod(DisposalMethod::NOT_SPECIFIED) , mDisposalMethod(DisposalMethod::NOT_SPECIFIED)
, mBlendMethod(BlendMethod::OVER) , mBlendMethod(BlendMethod::OVER)
, mHasNoAlpha(false)
, mPalettedImageData(nullptr) , mPalettedImageData(nullptr)
, mPaletteDepth(0) , mPaletteDepth(0)
, mNonPremult(false) , mNonPremult(false)

View File

@ -210,8 +210,8 @@ const uint64_t kSixtyDaysInSeconds = 60 * 24 * 60 * 60;
nsSiteSecurityService::nsSiteSecurityService() nsSiteSecurityService::nsSiteSecurityService()
: mMaxMaxAge(kSixtyDaysInSeconds) : mMaxMaxAge(kSixtyDaysInSeconds)
, mUsePreloadList(true) , mUsePreloadList(true)
, mPreloadListTimeOffset(0)
, mUseStsService(true) , mUseStsService(true)
, mPreloadListTimeOffset(0)
{ {
} }