diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-18 17:07:15 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-18 17:07:15 +0200 |
commit | cd3935494c7d1e12083d2951c657e364db5102ed (patch) | |
tree | 73de9392afdbfe7b7ffc11cb0f83d6e946e354f7 | |
parent | e8f532de41c5462367486872e01f26d04dc669c8 (diff) | |
download | uxp-cd3935494c7d1e12083d2951c657e364db5102ed.tar.gz |
Issue #80 - De-unify dom/archivereader
-rw-r--r-- | dom/archivereader/ArchiveRequest.cpp | 2 | ||||
-rw-r--r-- | dom/archivereader/ArchiveZipFile.cpp | 1 | ||||
-rw-r--r-- | dom/archivereader/moz.build | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/dom/archivereader/ArchiveRequest.cpp b/dom/archivereader/ArchiveRequest.cpp index 832dec3fac..a1518449fe 100644 --- a/dom/archivereader/ArchiveRequest.cpp +++ b/dom/archivereader/ArchiveRequest.cpp @@ -8,10 +8,12 @@ #include "mozilla/EventDispatcher.h" #include "mozilla/dom/ArchiveRequestBinding.h" +#include "mozilla/dom/File.h" #include "mozilla/dom/ScriptSettings.h" #include "nsContentUtils.h" using namespace mozilla; +using namespace mozilla::dom; USING_ARCHIVEREADER_NAMESPACE diff --git a/dom/archivereader/ArchiveZipFile.cpp b/dom/archivereader/ArchiveZipFile.cpp index d374fe91f0..e1716f3481 100644 --- a/dom/archivereader/ArchiveZipFile.cpp +++ b/dom/archivereader/ArchiveZipFile.cpp @@ -12,6 +12,7 @@ #include "mozilla/Attributes.h" #include "mozilla/dom/File.h" +using namespace mozilla; using namespace mozilla::dom; USING_ARCHIVEREADER_NAMESPACE diff --git a/dom/archivereader/moz.build b/dom/archivereader/moz.build index 57dbfa1210..a5d853c917 100644 --- a/dom/archivereader/moz.build +++ b/dom/archivereader/moz.build @@ -13,7 +13,7 @@ EXPORTS.mozilla.dom.archivereader += [ 'ArchiveZipFile.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'ArchiveEvent.cpp', 'ArchiveReader.cpp', 'ArchiveRequest.cpp', |