diff options
author | Moonchild <moonchild@palemoon.org> | 2019-08-09 08:25:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-09 08:25:37 +0000 |
commit | b5b29931034caa2aae356854f13bb744def1cd13 (patch) | |
tree | 49a7a620d38628e0f1f576a3a58538f238ad141b /dom/base/nsContentUtils.cpp | |
parent | fa4d569b93885f47c4b53430fc93bf8b12e43fcb (diff) | |
parent | deae241f5e3db8f9b86b98933291b9a30e28db22 (diff) | |
download | UXP-b5b29931034caa2aae356854f13bb744def1cd13.tar UXP-b5b29931034caa2aae356854f13bb744def1cd13.tar.gz UXP-b5b29931034caa2aae356854f13bb744def1cd13.tar.lz UXP-b5b29931034caa2aae356854f13bb744def1cd13.tar.xz UXP-b5b29931034caa2aae356854f13bb744def1cd13.zip |
Merge pull request #1207 from win7-7/nsImageLoadingContent.cpp-AsyncOpen2
Convert dom/base/nsImageLoadingContent.cpp to use AsyncOpen2 and followups along with it (1445670 and 1373780 part 2 and 3)
Diffstat (limited to 'dom/base/nsContentUtils.cpp')
-rw-r--r-- | dom/base/nsContentUtils.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp index 1f9c17947..800f40fa1 100644 --- a/dom/base/nsContentUtils.cpp +++ b/dom/base/nsContentUtils.cpp @@ -8478,12 +8478,9 @@ nsContentUtils::InternalContentPolicyTypeToExternalOrWorker(nsContentPolicyType bool nsContentUtils::IsPreloadType(nsContentPolicyType aType) { - if (aType == nsIContentPolicy::TYPE_INTERNAL_SCRIPT_PRELOAD || - aType == nsIContentPolicy::TYPE_INTERNAL_IMAGE_PRELOAD || - aType == nsIContentPolicy::TYPE_INTERNAL_STYLESHEET_PRELOAD) { - return true; - } - return false; + return (aType == nsIContentPolicy::TYPE_INTERNAL_SCRIPT_PRELOAD || + aType == nsIContentPolicy::TYPE_INTERNAL_IMAGE_PRELOAD || + aType == nsIContentPolicy::TYPE_INTERNAL_STYLESHEET_PRELOAD); } nsresult |