diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-30 11:32:07 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-30 11:51:11 +0000 |
commit | 7f354f371118f1407f90007262220403668dd237 (patch) | |
tree | 53da33f85383ce934145da45b1ad4963b8e94f35 /dom/base/nsContentPermissionHelper.cpp | |
parent | 2106a710534d44cc00a9529ef69839e47e709957 (diff) | |
download | aura-central-7f354f371118f1407f90007262220403668dd237.tar.gz |
Issue mcp-graveyard/UXP%1603 - Part 1: Reorganize ScriptLoader/ScriptElement
- Moves scripting parts of DOM into 'dom/script'
- Renames nsScript{Loader/Element} to Script{Loader/Element}
- Adjusts all callers
Diffstat (limited to 'dom/base/nsContentPermissionHelper.cpp')
-rw-r--r-- | dom/base/nsContentPermissionHelper.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dom/base/nsContentPermissionHelper.cpp b/dom/base/nsContentPermissionHelper.cpp index c57fc6233..eaaec2a41 100644 --- a/dom/base/nsContentPermissionHelper.cpp +++ b/dom/base/nsContentPermissionHelper.cpp @@ -29,9 +29,8 @@ #include "nsIDocument.h" #include "nsIDOMEvent.h" #include "nsWeakPtr.h" -#include "ScriptSettings.h" -using mozilla::Unused; // <snicker> +using mozilla::Unused; using namespace mozilla::dom; using namespace mozilla; |