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-24 09:56:03 +0000
commita0ef1c07de288109cc358cbe3d49a33fcf26d988 (patch)
treee4274eb6644a22762b671fc4ad7cdef4e1e78ac5 /dom/script/ScriptLoader.h
parentc5ab17748567a64c63d0b99f311046cc674a44d0 (diff)
downloadUXP-a0ef1c07de288109cc358cbe3d49a33fcf26d988.tar
UXP-a0ef1c07de288109cc358cbe3d49a33fcf26d988.tar.gz
UXP-a0ef1c07de288109cc358cbe3d49a33fcf26d988.tar.lz
UXP-a0ef1c07de288109cc358cbe3d49a33fcf26d988.tar.xz
UXP-a0ef1c07de288109cc358cbe3d49a33fcf26d988.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.