Bug 488777 - Removal of createTemporaryClientID under netwerk/cache; r+sr=cbiesinger

This commit is contained in:
Jonathan Steele 2009-04-20 12:31:26 +02:00
Родитель a4627abb04
Коммит 952cbedb1f
2 изменённых файлов: 1 добавлений и 12 удалений

7
netwerk/cache/public/nsICacheService.idl поставляемый
Просмотреть файл

@ -48,7 +48,7 @@ interface nsICacheListener;
interface nsICacheSession;
interface nsICacheVisitor;
[scriptable, uuid(98dd0187-aad4-4cab-82c5-1adddef3629d)]
[scriptable, uuid(de114eb4-29fc-4959-b2f7-2d03eb9bc771)]
interface nsICacheService : nsISupports
{
/**
@ -84,11 +84,6 @@ interface nsICacheService : nsISupports
* Evicts all entries in all devices implied by the storage policy.
*/
void evictEntries(in nsCacheStoragePolicy storagePolicy);
/**
* This method is deprecated and will throw NS_ERROR_NOT_IMPLEMENTED.
*/
ACString createTemporaryClientID(in nsCacheStoragePolicy storagePolicy);
};
%{C++

6
netwerk/cache/src/nsCacheService.cpp поставляемый
Просмотреть файл

@ -947,12 +947,6 @@ NS_IMETHODIMP nsCacheService::EvictEntries(nsCacheStoragePolicy storagePolicy)
return EvictEntriesForClient(nsnull, storagePolicy);
}
NS_IMETHODIMP nsCacheService::CreateTemporaryClientID(nsCacheStoragePolicy storagePolicy,
nsACString &clientID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/**
* Internal Methods
*/