summaryrefslogtreecommitdiffstats
path: root/dom/base/nsDocument.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-07-01 12:57:29 +0000
committerMoonchild <moonchild@palemoon.org>2020-07-01 12:57:29 +0000
commitfd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de (patch)
tree29ef38e1656883879b306f750dfec5a3281f5c94 /dom/base/nsDocument.h
parentc7330b5eb48cdd69b06e5f55643ea4c94303381f (diff)
parent9056191e67055c5e96ecc352e592ea9ae94a2236 (diff)
downloadUXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar
UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.gz
UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.lz
UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.xz
UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.zip
Merge branch 'es-modules-work'
Diffstat (limited to 'dom/base/nsDocument.h')
-rw-r--r--dom/base/nsDocument.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/base/nsDocument.h b/dom/base/nsDocument.h
index 9d7b0aafd..502ba0f13 100644
--- a/dom/base/nsDocument.h
+++ b/dom/base/nsDocument.h
@@ -32,7 +32,6 @@
#include "nsJSThingHashtable.h"
#include "nsIScriptObjectPrincipal.h"
#include "nsIURI.h"
-#include "nsScriptLoader.h"
#include "nsIRadioGroupContainer.h"
#include "nsILayoutHistoryState.h"
#include "nsIRequest.h"
@@ -61,6 +60,7 @@
#include "mozilla/MemoryReporting.h"
#include "mozilla/PendingAnimationTracker.h"
#include "mozilla/dom/DOMImplementation.h"
+#include "mozilla/dom/ScriptLoader.h"
#include "mozilla/dom/StyleSheetList.h"
#include "nsDataHashtable.h"
#include "mozilla/TimeStamp.h"
@@ -491,7 +491,7 @@ public:
/**
* Get the script loader for this document
*/
- virtual nsScriptLoader* ScriptLoader() override;
+ virtual mozilla::dom::ScriptLoader* ScriptLoader() override;
/**
* Add/Remove an element to the document's id and name hashes
@@ -1205,7 +1205,7 @@ protected:
public:
RefPtr<mozilla::EventListenerManager> mListenerManager;
RefPtr<nsDOMStyleSheetSetList> mStyleSheetSetList;
- RefPtr<nsScriptLoader> mScriptLoader;
+ RefPtr<mozilla::dom::ScriptLoader> mScriptLoader;
nsDocHeaderData* mHeaderData;
nsClassHashtable<nsStringHashKey, nsRadioGroupStruct> mRadioGroups;