Bug 773373 part 1: Remove some dead code. r=honzab

This commit is contained in:
Jonas Sicking 2012-09-25 16:06:27 -07:00
parent 57e0ec6337
commit d2d6d8c9d0
2 changed files with 0 additions and 15 deletions

View File

@ -329,18 +329,6 @@ nsDOMStorageDBWrapper::CreateQuotaDBKey(const nsACString& aAsciiDomain,
return NS_OK;
}
nsresult
nsDOMStorageDBWrapper::GetDomainFromScopeKey(const nsACString& aScope,
nsACString& aDomain)
{
nsAutoCString reverseDomain, scope;
scope = aScope;
scope.Left(reverseDomain, scope.FindChar(':')-1);
ReverseString(reverseDomain, aDomain);
return NS_OK;
}
void
nsDOMStorageDBWrapper::EnsureTempTableFlushTimer()
{

View File

@ -190,9 +190,6 @@ public:
static nsresult CreateQuotaDBKey(const nsACString& aAsciiDomain,
nsACString& aKey);
static nsresult GetDomainFromScopeKey(const nsACString& aScope,
nsACString& aDomain);
/**
* Ensures the temp table flush timer is running. This is called when we add
* data that will need to be flushed.