Issue #80 - De-unify dom/quota

This commit is contained in:
Moonchild 2020-04-23 12:07:55 +00:00 • committed by Roy Tam
commit 96a88a9097
5 changed files with 8 additions and 1 deletions

View file

@ -8,6 +8,7 @@
#include "ActorsChild.h" #include "ActorsChild.h"
#include "nsIQuotaCallbacks.h" #include "nsIQuotaCallbacks.h"
#include "nsIVariant.h"
namespace mozilla { namespace mozilla {
namespace dom { namespace dom {

View file

@ -8,6 +8,7 @@
#define mozilla_dom_quota_QuotaResults_h #define mozilla_dom_quota_QuotaResults_h
#include "nsIQuotaResults.h" #include "nsIQuotaResults.h"
#include "nsString.h"
namespace mozilla { namespace mozilla {
namespace dom { namespace dom {

View file

@ -13,9 +13,12 @@
#include "mozilla/ErrorResult.h" #include "mozilla/ErrorResult.h"
#include "nsIQuotaCallbacks.h" #include "nsIQuotaCallbacks.h"
#include "nsIQuotaRequests.h" #include "nsIQuotaRequests.h"
#include "nsIQuotaResults.h"
#include "nsPIDOMWindow.h" #include "nsPIDOMWindow.h"
#include "QuotaManagerService.h"
using namespace mozilla::dom::workers; using namespace mozilla::dom::workers;
using namespace mozilla::dom::quota;
namespace mozilla { namespace mozilla {
namespace dom { namespace dom {

View file

@ -7,8 +7,10 @@
#ifndef mozilla_dom_StorageManager_h #ifndef mozilla_dom_StorageManager_h
#define mozilla_dom_StorageManager_h #define mozilla_dom_StorageManager_h
#include "mozilla/ErrorResult.h"
#include "nsCOMPtr.h" #include "nsCOMPtr.h"
#include "nsCycleCollectionParticipant.h" #include "nsCycleCollectionParticipant.h"
#include "nsIGlobalObject.h"
#include "nsISupports.h" #include "nsISupports.h"
#include "nsWrapperCache.h" #include "nsWrapperCache.h"

View file

@ -31,7 +31,7 @@ EXPORTS.mozilla.dom.quota += [
'UsageInfo.h', 'UsageInfo.h',
] ]
UNIFIED_SOURCES += [ SOURCES += [
'ActorsChild.cpp', 'ActorsChild.cpp',
'ActorsParent.cpp', 'ActorsParent.cpp',
'FileStreams.cpp', 'FileStreams.cpp',