Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.

This commit is contained in:
Timothy Nikkel 2010-04-11 19:26:41 -05:00
Родитель b696838d2e
Коммит 54c2a7920d
3 изменённых файлов: 4 добавлений и 30 удалений

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

@ -2415,12 +2415,6 @@ nsDocShell::SetItemType(PRInt32 aItemType)
// disable auth prompting for anything but content
mAllowAuth = mItemType == typeContent;
nsRefPtr<nsPresContext> presContext = nsnull;
GetPresContext(getter_AddRefs(presContext));
if (presContext) {
presContext->UpdateIsChromeCache();
}
return NS_OK;
}

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

@ -1335,7 +1335,6 @@ nsPresContext::SetContainer(nsISupports* aHandler)
if (mContainer) {
GetDocumentColorPreferences();
}
UpdateIsChromeCacheInternal();
}
already_AddRefed<nsISupports>
@ -1646,8 +1645,8 @@ nsPresContext::CountReflows(const char * aName, nsIFrame * aFrame)
}
#endif
void
nsPresContext::UpdateIsChromeCacheInternal()
PRBool
nsPresContext::IsChrome() const
{
PRBool isChrome = PR_FALSE;
nsCOMPtr<nsISupports> container = GetContainer();
@ -1662,13 +1661,7 @@ nsPresContext::UpdateIsChromeCacheInternal()
}
}
}
mIsChrome = isChrome;
}
void
nsPresContext::UpdateIsChromeCacheExternal()
{
UpdateIsChromeCacheInternal();
return isChrome;
}
/* virtual */ PRBool

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

@ -810,17 +810,7 @@ public:
mType == eContext_PrintPreview); }
// Is this presentation in a chrome docshell?
PRBool IsChrome() const { return mIsChrome; }
virtual void UpdateIsChromeCacheExternal();
void UpdateIsChromeCacheInternal();
#ifdef _IMPL_NS_LAYOUT
void UpdateIsChromeCache()
{ UpdateIsChromeCacheInternal(); }
#else
void UpdateIsChromeCache()
{ UpdateIsChromeCacheExternal(); }
#endif
PRBool IsChrome() const;
// Public API for native theme code to get style internals.
virtual PRBool HasAuthorSpecifiedRules(nsIFrame *aFrame, PRUint32 ruleTypeMask) const;
@ -1125,9 +1115,6 @@ protected:
unsigned mProcessingRestyles : 1;
unsigned mProcessingAnimationStyleChange : 1;
// Cache whether we are chrome or not because it is expensive.
unsigned mIsChrome : 1;
#ifdef DEBUG
PRBool mInitialized;
#endif