add setter for mem cache entry so we can clear it out r=sspitzer, sr=mscott

This commit is contained in:
bienvenu%netscape.com 2001-01-11 04:05:18 +00:00
Родитель 702a469840
Коммит c8c915bd95
2 изменённых файлов: 7 добавлений и 1 удалений

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

@ -72,7 +72,7 @@ interface nsIMsgMailNewsUrl : nsIURL {
attribute boolean msgIsInLocalCache;
attribute boolean suppressErrorMsgs; // used to avoid displaying biff error messages
readonly attribute nsICachedNetData memCacheEntry;
attribute nsICachedNetData memCacheEntry;
const unsigned long eCopy = 0;
const unsigned long eMove = 1;

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

@ -598,6 +598,12 @@ NS_IMETHODIMP nsMsgMailNewsUrl::SetFilePath(const char *i_DirFile)
return m_baseURL->SetFilePath(i_DirFile);
}
NS_IMETHODIMP nsMsgMailNewsUrl::SetMemCacheEntry(nsICachedNetData *memCacheEntry)
{
m_memCacheEntry = memCacheEntry;
return NS_OK;
}
NS_IMETHODIMP nsMsgMailNewsUrl:: GetMemCacheEntry(nsICachedNetData **memCacheEntry)
{
NS_ENSURE_ARG(memCacheEntry);