mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1248550 - Part 1: Move main idle maintenance logic into a new object Maintenance; r=khuey
This commit is contained in:
parent
b4c662fefb
commit
7548797440
File diff suppressed because it is too large
Load Diff
@ -3773,6 +3773,7 @@ QuotaManager::OpenDirectory(PersistenceType aPersistenceType,
|
||||
void
|
||||
QuotaManager::OpenDirectoryInternal(Nullable<PersistenceType> aPersistenceType,
|
||||
const OriginScope& aOriginScope,
|
||||
Nullable<Client::Type> aClientType,
|
||||
bool aExclusive,
|
||||
OpenDirectoryListener* aOpenListener)
|
||||
{
|
||||
@ -3783,7 +3784,7 @@ QuotaManager::OpenDirectoryInternal(Nullable<PersistenceType> aPersistenceType,
|
||||
EmptyCString(),
|
||||
aOriginScope,
|
||||
Nullable<bool>(),
|
||||
Nullable<Client::Type>(),
|
||||
Nullable<Client::Type>(aClientType),
|
||||
aExclusive,
|
||||
true,
|
||||
aOpenListener);
|
||||
@ -5029,6 +5030,7 @@ NormalOriginOperationBase::Open()
|
||||
|
||||
QuotaManager::Get()->OpenDirectoryInternal(mPersistenceType,
|
||||
mOriginScope,
|
||||
Nullable<Client::Type>(),
|
||||
mExclusive,
|
||||
this);
|
||||
}
|
||||
|
@ -230,6 +230,7 @@ public:
|
||||
void
|
||||
OpenDirectoryInternal(Nullable<PersistenceType> aPersistenceType,
|
||||
const OriginScope& aOriginScope,
|
||||
Nullable<Client::Type> aClientType,
|
||||
bool aExclusive,
|
||||
OpenDirectoryListener* aOpenListener);
|
||||
|
||||
|
@ -16,6 +16,7 @@ EXPORTS.mozilla.dom.quota += [
|
||||
'ActorsParent.h',
|
||||
'Client.h',
|
||||
'FileStreams.h',
|
||||
'OriginScope.h',
|
||||
'PersistenceType.h',
|
||||
'QuotaCommon.h',
|
||||
'QuotaManager.h',
|
||||
|
Loading…
Reference in New Issue
Block a user