diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-21 15:28:03 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-24 10:37:19 +0200 |
commit | 0a33733505b3f3e098769f856adbcee597893518 (patch) | |
tree | 03fb8872eb8784430883896e885513e6e1ea4cd0 /dom/indexedDB/IDBDatabase.cpp | |
parent | 691878e20f7080340642784e3009a52e71f003bc (diff) | |
download | UXP-0a33733505b3f3e098769f856adbcee597893518.tar UXP-0a33733505b3f3e098769f856adbcee597893518.tar.gz UXP-0a33733505b3f3e098769f856adbcee597893518.tar.lz UXP-0a33733505b3f3e098769f856adbcee597893518.tar.xz UXP-0a33733505b3f3e098769f856adbcee597893518.zip |
Issue #80 - De-unify dom/indexedDB
Diffstat (limited to 'dom/indexedDB/IDBDatabase.cpp')
-rw-r--r-- | dom/indexedDB/IDBDatabase.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dom/indexedDB/IDBDatabase.cpp b/dom/indexedDB/IDBDatabase.cpp index 6ef352801..8a1fa4b21 100644 --- a/dom/indexedDB/IDBDatabase.cpp +++ b/dom/indexedDB/IDBDatabase.cpp @@ -16,6 +16,7 @@ #include "IDBTransaction.h" #include "IDBFactory.h" #include "IndexedDatabaseManager.h" +#include "KeyPath.h" #include "mozilla/ErrorResult.h" #include "mozilla/EventDispatcher.h" #include "MainThreadUtils.h" @@ -54,13 +55,15 @@ // Include this last to avoid path problems on Windows. #include "ActorsChild.h" -namespace mozilla { -namespace dom { +using namespace mozilla::dom::indexedDB; using namespace mozilla::dom::quota; using namespace mozilla::ipc; using namespace mozilla::services; +namespace mozilla { +namespace dom { + namespace { const char kCycleCollectionObserverTopic[] = "cycle-collector-end"; |