[not part of build] Added GetFile() to implement the file attribute.

This commit is contained in:
beard%netscape.com 2001-03-07 01:40:41 +00:00
Родитель d4c0c120f1
Коммит 0fa067b527
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -260,6 +260,14 @@ nsCacheEntryDescriptor::SetStoragePolicy(nsCacheStoragePolicy policy)
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsCacheEntryDescriptor::GetFile(nsIFile ** result)
{
NS_ENSURE_ARG_POINTER(result);
if (!mCacheEntry) return NS_ERROR_NOT_AVAILABLE;
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsCacheEntryDescriptor::Doom()