mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
Issue #80 - De-unify dom/storage
This commit is contained in:
parent
eaf9a0cddd
commit
1fb177e77a
3 changed files with 9 additions and 7 deletions
|
|
@ -4,12 +4,16 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "DOMStorageDBThread.h"
|
||||
#include "DOMStorageManager.h"
|
||||
|
||||
#include "mozIStorageBindingParamsArray.h"
|
||||
#include "mozIStorageBindingParams.h"
|
||||
#include "mozIStorageValueArray.h"
|
||||
#include "mozIStorageFunction.h"
|
||||
|
||||
#include "mozStorageHelper.h"
|
||||
|
||||
#include "mozilla/BasePrincipal.h"
|
||||
#include "nsVariant.h"
|
||||
#include "mozilla/Services.h"
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#include "nsNetUtil.h"
|
||||
#include "nsNetCID.h"
|
||||
#include "nsIURL.h"
|
||||
#include "nsPIDOMWindow.h"
|
||||
#include "nsPrintfCString.h"
|
||||
#include "nsXULAppAPI.h"
|
||||
#include "nsThreadUtils.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ EXPORTS.mozilla.dom += [
|
|||
'DOMStorageIPC.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'DOMStorage.cpp',
|
||||
'DOMStorageCache.cpp',
|
||||
'DOMStorageDBThread.cpp',
|
||||
|
|
@ -19,16 +19,13 @@ UNIFIED_SOURCES += [
|
|||
'DOMStorageObserver.cpp',
|
||||
]
|
||||
|
||||
IPDL_SOURCES += [
|
||||
'PStorage.ipdl',
|
||||
]
|
||||
IPDL_SOURCES += ['PStorage.ipdl']
|
||||
|
||||
include('/ipc/chromium/chromium-config.mozbuild')
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/base',
|
||||
]
|
||||
|
||||
LOCAL_INCLUDES += ['/dom/base']
|
||||
|
||||
if CONFIG['ENABLE_TESTS']:
|
||||
DEFINES['DOM_STORAGE_TESTS'] = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue