diff options
author | Brian Smith <brian@dbsoft.org> | 2023-10-02 18:38:02 -0400 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2023-10-02 18:38:02 -0400 |
commit | 5c8336d123f37b6e22c2b49e0faa8912ce5fd2ce (patch) | |
tree | 3abd21610c2ddc1cd6c63146fbdecc34d47ebb27 | |
parent | 0f0adfa1b4bb34f9eb7c72cd4edcaff5b820373d (diff) | |
download | uxp-5c8336d123f37b6e22c2b49e0faa8912ce5fd2ce.tar.gz |
Issue #1442 - Part 25b - Second try that hopefully doesn't break Windows.
-rw-r--r-- | dom/fetch/Fetch.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dom/fetch/Fetch.h b/dom/fetch/Fetch.h index 01ede010db..19b579cb6c 100644 --- a/dom/fetch/Fetch.h +++ b/dom/fetch/Fetch.h @@ -18,7 +18,9 @@ #include "mozilla/ErrorResult.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/FetchStreamReader.h"
-#include "mozilla/dom/FetchIPCTypes.h"
+// Fix X11 header brain damage that conflicts with HeadersGuardEnum::None
+#undef None
+#include "mozilla/dom/RequestBinding.h"
class nsIGlobalObject;
class nsIEventTarget;
|