diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-24 23:49:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 23:49:40 +0200 |
commit | 7a9c933a2331fdc9ba214dcb81f8c39396885a9d (patch) | |
tree | de5e3c2b926c209c5f58cb8860d09d769a6fead7 /dom/push | |
parent | 400e9018fd5b1b8e50ba5ea403ba98f9a658c076 (diff) | |
parent | 756162415bde12e60125f0b3a69e321c45956ae3 (diff) | |
download | UXP-7a9c933a2331fdc9ba214dcb81f8c39396885a9d.tar UXP-7a9c933a2331fdc9ba214dcb81f8c39396885a9d.tar.gz UXP-7a9c933a2331fdc9ba214dcb81f8c39396885a9d.tar.lz UXP-7a9c933a2331fdc9ba214dcb81f8c39396885a9d.tar.xz UXP-7a9c933a2331fdc9ba214dcb81f8c39396885a9d.zip |
Merge pull request #1522 from MoonchildProductions/deunify_dom
Deunify dom
Diffstat (limited to 'dom/push')
-rw-r--r-- | dom/push/PushSubscriptionOptions.cpp | 1 | ||||
-rw-r--r-- | dom/push/PushUtil.cpp | 1 | ||||
-rw-r--r-- | dom/push/PushUtil.h | 1 | ||||
-rw-r--r-- | dom/push/moz.build | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/dom/push/PushSubscriptionOptions.cpp b/dom/push/PushSubscriptionOptions.cpp index 39252e9e8..8f6ce5499 100644 --- a/dom/push/PushSubscriptionOptions.cpp +++ b/dom/push/PushSubscriptionOptions.cpp @@ -6,6 +6,7 @@ #include "mozilla/dom/PushSubscriptionOptionsBinding.h" #include "mozilla/HoldDropJSObjects.h" +#include "PushUtil.h" namespace mozilla { namespace dom { diff --git a/dom/push/PushUtil.cpp b/dom/push/PushUtil.cpp index 408b62048..1aba0e066 100644 --- a/dom/push/PushUtil.cpp +++ b/dom/push/PushUtil.cpp @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "mozilla/dom/PushUtil.h" +#include "mozilla/dom/UnionTypes.h" // for OwningArrayBufferViewOrArrayBuffer namespace mozilla { namespace dom { diff --git a/dom/push/PushUtil.h b/dom/push/PushUtil.h index 548ae2349..71a7af478 100644 --- a/dom/push/PushUtil.h +++ b/dom/push/PushUtil.h @@ -7,6 +7,7 @@ #include "nsTArray.h" +#include "mozilla/ErrorResult.h" #include "mozilla/dom/TypedArray.h" namespace mozilla { diff --git a/dom/push/moz.build b/dom/push/moz.build index d138b270c..ca72c5f5d 100644 --- a/dom/push/moz.build +++ b/dom/push/moz.build @@ -37,7 +37,7 @@ EXPORTS.mozilla.dom += [ 'PushUtil.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'PushManager.cpp', 'PushNotifier.cpp', 'PushSubscription.cpp', |