bug 908347 - remove AddLeaf() r=mrbkap

This commit is contained in:
Trevor Saunders 2013-08-17 14:48:06 -04:00
Родитель 618cc871fb
Коммит a6328074f0
1 изменённых файлов: 0 добавлений и 20 удалений

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

@ -232,7 +232,6 @@ public:
uint32_t aNumFlushed, int32_t aInsertionPoint);
nsresult OpenBody();
nsresult CloseContainer(const nsHTMLTag aTag);
nsresult AddLeaf(nsIContent* aContent);
nsresult End();
nsresult GrowStack();
@ -601,25 +600,6 @@ SinkContext::CloseContainer(const nsHTMLTag aTag)
return result;
}
nsresult
SinkContext::AddLeaf(nsIContent* aContent)
{
NS_ASSERTION(mStackPos > 0, "leaf w/o container");
if (mStackPos <= 0) {
return NS_ERROR_FAILURE;
}
DidAddContent(mStack[mStackPos - 1].Add(aContent));
#ifdef DEBUG
if (SINK_LOG_TEST(gSinkLogModuleInfo, SINK_ALWAYS_REFLOW)) {
mSink->ForceReflow();
}
#endif
return NS_OK;
}
nsresult
SinkContext::End()
{