Bug 1058798 - Fix indentation in ns*FilterInstance.h files. r=mstange

This commit is contained in:
Max Vujovic 2014-09-04 10:31:03 -07:00
Родитель e006fff028
Коммит 1d758c7592
3 изменённых файлов: 26 добавлений и 26 удалений

Просмотреть файл

@ -114,7 +114,7 @@ private:
/**
* The frame for the element that is currently being filtered.
*/
nsIFrame* mTargetFrame;
nsIFrame* mTargetFrame;
/**
* The bounding box of the element being filtered, in filter space. Used for

Просмотреть файл

@ -263,61 +263,61 @@ private:
/**
* The frame for the element that is currently being filtered.
*/
nsIFrame* mTargetFrame;
nsIFrame* mTargetFrame;
nsSVGFilterPaintCallback* mPaintCallback;
/**
* The SVG bbox of the element that is being filtered, in user space.
*/
gfxRect mTargetBBox;
gfxRect mTargetBBox;
/**
* The SVG bbox of the element that is being filtered, in filter space.
*/
nsIntRect mTargetBBoxInFilterSpace;
nsIntRect mTargetBBoxInFilterSpace;
/**
* The transform from filter space to outer-<svg> device space.
*/
gfxMatrix mFilterSpaceToDeviceSpaceTransform;
gfxMatrix mFilterSpaceToDeviceSpaceTransform;
/**
* Transform rects between filter space and frame space in CSS pixels.
*/
gfxMatrix mFilterSpaceToFrameSpaceInCSSPxTransform;
gfxMatrix mFrameSpaceInCSSPxToFilterSpaceTransform;
gfxMatrix mFilterSpaceToFrameSpaceInCSSPxTransform;
gfxMatrix mFrameSpaceInCSSPxToFilterSpaceTransform;
/**
* The scale factors between user space and filter space.
*/
gfxSize mUserSpaceToFilterSpaceScale;
gfxSize mFilterSpaceToUserSpaceScale;
gfxSize mUserSpaceToFilterSpaceScale;
gfxSize mFilterSpaceToUserSpaceScale;
/**
* Pre-filter paint bounds of the element that is being filtered, in filter
* space.
*/
nsIntRect mTargetBounds;
nsIntRect mTargetBounds;
/**
* The dirty area that needs to be repainted, in filter space.
*/
nsIntRegion mPostFilterDirtyRegion;
nsIntRegion mPostFilterDirtyRegion;
/**
* The pre-filter area of the filtered element that changed, in filter space.
*/
nsIntRegion mPreFilterDirtyRegion;
nsIntRegion mPreFilterDirtyRegion;
SourceInfo mSourceGraphic;
SourceInfo mFillPaint;
SourceInfo mStrokePaint;
nsIFrame* mTransformRoot;
SourceInfo mSourceGraphic;
SourceInfo mFillPaint;
SourceInfo mStrokePaint;
nsIFrame* mTransformRoot;
nsTArray<mozilla::RefPtr<SourceSurface>> mInputImages;
nsTArray<FilterPrimitiveDescription> mPrimitiveDescriptions;
int32_t mAppUnitsPerCSSPx;
bool mInitialized;
int32_t mAppUnitsPerCSSPx;
bool mInitialized;
};
#endif

Просмотреть файл

@ -208,7 +208,7 @@ private:
/**
* The frame for the element that is currently being filtered.
*/
nsIFrame* mTargetFrame;
nsIFrame* mTargetFrame;
/**
* The filter element referenced by mTargetFrame's element.
@ -223,24 +223,24 @@ private:
/**
* The SVG bbox of the element that is being filtered, in user space.
*/
gfxRect mTargetBBox;
gfxRect mTargetBBox;
/**
* The "filter region" in various spaces.
*/
gfxRect mUserSpaceBounds;
nsIntRect mFilterSpaceBounds;
gfxRect mUserSpaceBounds;
nsIntRect mFilterSpaceBounds;
/**
* The scale factors between user space and filter space.
*/
gfxSize mUserSpaceToFilterSpaceScale;
gfxSize mFilterSpaceToUserSpaceScale;
gfxSize mUserSpaceToFilterSpaceScale;
gfxSize mFilterSpaceToUserSpaceScale;
/**
* The 'primitiveUnits' attribute value (objectBoundingBox or userSpaceOnUse).
*/
uint16_t mPrimitiveUnits;
uint16_t mPrimitiveUnits;
/**
* The index of the FilterPrimitiveDescription that this SVG filter should use
@ -261,7 +261,7 @@ private:
*/
int32_t mSourceAlphaAvailable;
bool mInitialized;
bool mInitialized;
};
#endif