Bug 505184. Remove unused aBorder parameter to PaintBackgroundLayout. r=dbaron

This commit is contained in:
Robert O'Callahan 2009-07-22 12:44:50 +12:00
Родитель a5233fd2a0
Коммит 4f7139b194
1 изменённых файлов: 3 добавлений и 5 удалений

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

@ -307,8 +307,7 @@ static void PaintBackgroundLayer(nsPresContext* aPresContext,
const nsRect& aBorderArea, const nsRect& aBorderArea,
const nsRect& aBGClipRect, const nsRect& aBGClipRect,
const nsStyleBackground& aBackground, const nsStyleBackground& aBackground,
const nsStyleBackground::Layer& aLayer, const nsStyleBackground::Layer& aLayer);
const nsStyleBorder& aBorder);
static void DrawBorderImage(nsPresContext* aPresContext, static void DrawBorderImage(nsPresContext* aPresContext,
nsIRenderingContext& aRenderingContext, nsIRenderingContext& aRenderingContext,
@ -1717,7 +1716,7 @@ nsCSSRendering::PaintBackgroundWithSC(nsPresContext* aPresContext,
if (!dirtyRectGfx.IsEmpty()) { if (!dirtyRectGfx.IsEmpty()) {
PaintBackgroundLayer(aPresContext, aRenderingContext, aForFrame, PaintBackgroundLayer(aPresContext, aRenderingContext, aForFrame,
dirtyRect, aBorderArea, bgClipArea, aBackground, dirtyRect, aBorderArea, bgClipArea, aBackground,
layer, aBorder); layer);
} }
} }
} }
@ -1731,8 +1730,7 @@ PaintBackgroundLayer(nsPresContext* aPresContext,
const nsRect& aBorderArea, const nsRect& aBorderArea,
const nsRect& aBGClipRect, const nsRect& aBGClipRect,
const nsStyleBackground& aBackground, const nsStyleBackground& aBackground,
const nsStyleBackground::Layer& aLayer, const nsStyleBackground::Layer& aLayer)
const nsStyleBorder& aBorder)
{ {
// Lookup the image // Lookup the image
imgIRequest *req = aLayer.mImage; imgIRequest *req = aLayer.mImage;