summaryrefslogtreecommitdiffstats
path: root/dom/script/ScriptLoader.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-08-24 09:56:03 +0000
committerMoonchild <moonchild@palemoon.org>2020-08-30 09:40:03 +0000
commit3f14e9ec5ff982424f6ac2cf401037e3f749e6a3 (patch)
tree66bca74499ea7009f029eed5d048ff743f98dfba /dom/script/ScriptLoader.h
parentaefb293793a4278d53d39e346aaa1178975aada1 (diff)
downloadUXP-3f14e9ec5ff982424f6ac2cf401037e3f749e6a3.tar
UXP-3f14e9ec5ff982424f6ac2cf401037e3f749e6a3.tar.gz
UXP-3f14e9ec5ff982424f6ac2cf401037e3f749e6a3.tar.lz
UXP-3f14e9ec5ff982424f6ac2cf401037e3f749e6a3.tar.xz
UXP-3f14e9ec5ff982424f6ac2cf401037e3f749e6a3.zip
Issue #618 - Rename some script load request flags to be more descriptive.
Diffstat (limited to 'dom/script/ScriptLoader.h')
-rw-r--r--dom/script/ScriptLoader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/script/ScriptLoader.h b/dom/script/ScriptLoader.h
index 46ed4e120..82a8512c0 100644
--- a/dom/script/ScriptLoader.h
+++ b/dom/script/ScriptLoader.h
@@ -74,8 +74,8 @@ public:
mProgress(Progress::Loading),
mIsInline(true),
mHasSourceMapURL(false),
- mIsDefer(false),
- mIsAsync(false),
+ mInDeferList(false),
+ mInAsyncList(false),
mIsNonAsyncScriptInserted(false),
mIsXSLT(false),
mIsCanceled(false),
@@ -159,8 +159,8 @@ public:
Progress mProgress; // Are we still waiting for a load to complete?
bool mIsInline; // Is the script inline or loaded?
bool mHasSourceMapURL; // Does the HTTP header have a source map url?
- bool mIsDefer; // True if we live in mDeferRequests.
- bool mIsAsync; // True if we live in mLoadingAsyncRequests or mLoadedAsyncRequests.
+ bool mInDeferList; // True if we live in mDeferRequests.
+ bool mInAsyncList; // True if we live in mLoadingAsyncRequests or mLoadedAsyncRequests.
bool mIsNonAsyncScriptInserted; // True if we live in mNonAsyncExternalScriptInsertedRequests
bool mIsXSLT; // True if we live in mXSLTRequests.
bool mIsCanceled; // True if we have been explicitly canceled.