diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-26 12:56:46 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-26 12:56:46 +0200 |
commit | 98fe8b0ccbea37c2681ad8c788baa91554871f4d (patch) | |
tree | 0e269a27661fea619ab07a533e0c1fa195c3c671 /layout | |
parent | e08a4ad1c8096fc8de64fac4f36cf0c569cb4420 (diff) | |
parent | 519030e688dd7075a7cd9f14dd6fb9e210b5a689 (diff) | |
download | UXP-98fe8b0ccbea37c2681ad8c788baa91554871f4d.tar UXP-98fe8b0ccbea37c2681ad8c788baa91554871f4d.tar.gz UXP-98fe8b0ccbea37c2681ad8c788baa91554871f4d.tar.lz UXP-98fe8b0ccbea37c2681ad8c788baa91554871f4d.tar.xz UXP-98fe8b0ccbea37c2681ad8c788baa91554871f4d.zip |
Merge branch 'redwood' into 28.9-platformRELBASE_20200426
Diffstat (limited to 'layout')
-rw-r--r-- | layout/build/moz.build | 2 | ||||
-rw-r--r-- | layout/build/nsLayoutStatics.cpp | 2 | ||||
-rw-r--r-- | layout/forms/moz.build | 2 | ||||
-rw-r--r-- | layout/forms/nsHTMLButtonControlFrame.cpp | 1 | ||||
-rw-r--r-- | layout/forms/nsLegendFrame.cpp | 2 | ||||
-rw-r--r-- | layout/forms/nsTextControlFrame.cpp | 1 | ||||
-rw-r--r-- | layout/inspector/moz.build | 4 | ||||
-rw-r--r-- | layout/ipc/moz.build | 5 | ||||
-rw-r--r-- | layout/mathml/moz.build | 2 | ||||
-rw-r--r-- | layout/mathml/nsMathMLOperators.cpp | 1 | ||||
-rw-r--r-- | layout/mathml/nsMathMLmfencedFrame.cpp | 2 | ||||
-rw-r--r-- | layout/tools/layout-debug/src/moz.build | 2 |
12 files changed, 15 insertions, 11 deletions
diff --git a/layout/build/moz.build b/layout/build/moz.build index ecf180d78..360fe3c97 100644 --- a/layout/build/moz.build +++ b/layout/build/moz.build @@ -10,7 +10,7 @@ EXPORTS += [ 'nsLayoutStatics.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'nsContentDLF.cpp', 'nsLayoutModule.cpp', 'nsLayoutStatics.cpp', diff --git a/layout/build/nsLayoutStatics.cpp b/layout/build/nsLayoutStatics.cpp index 0f4560afe..124bcbf10 100644 --- a/layout/build/nsLayoutStatics.cpp +++ b/layout/build/nsLayoutStatics.cpp @@ -112,11 +112,13 @@ #include "nsApplicationCacheService.h" #include "mozilla/dom/CustomElementRegistry.h" #include "mozilla/dom/time/DateCacheCleaner.h" +#include "mozilla/dom/workers/ServiceWorkerManager.h" #include "mozilla/EventDispatcher.h" #include "mozilla/IMEStateManager.h" #include "mozilla/dom/HTMLVideoElement.h" #include "TouchManager.h" #include "MediaDecoder.h" +#include "MediaManager.h" #include "MediaPrefs.h" #include "mozilla/ServoBindings.h" #include "mozilla/StaticPresData.h" diff --git a/layout/forms/moz.build b/layout/forms/moz.build index 4fecbad38..50e364ce2 100644 --- a/layout/forms/moz.build +++ b/layout/forms/moz.build @@ -18,7 +18,7 @@ EXPORTS += [ 'nsITextControlFrame.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'nsButtonFrameRenderer.cpp', 'nsColorControlFrame.cpp', 'nsComboboxControlFrame.cpp', diff --git a/layout/forms/nsHTMLButtonControlFrame.cpp b/layout/forms/nsHTMLButtonControlFrame.cpp index 2e4fa9f67..c6d8e1c4f 100644 --- a/layout/forms/nsHTMLButtonControlFrame.cpp +++ b/layout/forms/nsHTMLButtonControlFrame.cpp @@ -7,6 +7,7 @@ #include "nsContainerFrame.h" #include "nsIFormControlFrame.h" +#include "nsIFrameInlines.h" #include "nsPresContext.h" #include "nsGkAtoms.h" #include "nsButtonFrameRenderer.h" diff --git a/layout/forms/nsLegendFrame.cpp b/layout/forms/nsLegendFrame.cpp index 60056f15d..95efc2c87 100644 --- a/layout/forms/nsLegendFrame.cpp +++ b/layout/forms/nsLegendFrame.cpp @@ -12,6 +12,8 @@ #include "nsStyleConsts.h" #include "nsFormControlFrame.h" +using namespace mozilla; + nsIFrame* NS_NewLegendFrame(nsIPresShell* aPresShell, nsStyleContext* aContext) { diff --git a/layout/forms/nsTextControlFrame.cpp b/layout/forms/nsTextControlFrame.cpp index f8fdf3420..a65e5b972 100644 --- a/layout/forms/nsTextControlFrame.cpp +++ b/layout/forms/nsTextControlFrame.cpp @@ -55,6 +55,7 @@ #define DEFAULT_COLUMN_WIDTH 20 using namespace mozilla; +using namespace mozilla::dom; nsIFrame* NS_NewTextControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext) diff --git a/layout/inspector/moz.build b/layout/inspector/moz.build index 1576b7d14..bbf808292 100644 --- a/layout/inspector/moz.build +++ b/layout/inspector/moz.build @@ -26,7 +26,7 @@ EXPORTS += [ 'nsFontFaceList.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'inCSSValueSearch.cpp', 'inDeepTreeWalker.cpp', 'inDOMUtils.cpp', @@ -37,7 +37,7 @@ UNIFIED_SOURCES += [ ] if CONFIG['MOZ_XUL']: - UNIFIED_SOURCES += [ + SOURCES += [ 'inDOMView.cpp', ] diff --git a/layout/ipc/moz.build b/layout/ipc/moz.build index d9cf962ca..919a9df7a 100644 --- a/layout/ipc/moz.build +++ b/layout/ipc/moz.build @@ -14,12 +14,9 @@ EXPORTS.mozilla.layout += [ 'VsyncParent.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'RenderFrameChild.cpp', 'RenderFrameParent.cpp', -] - -SOURCES += [ 'VsyncChild.cpp', 'VsyncParent.cpp', ] diff --git a/layout/mathml/moz.build b/layout/mathml/moz.build index f40b2c2c6..07dd446a3 100644 --- a/layout/mathml/moz.build +++ b/layout/mathml/moz.build @@ -16,7 +16,7 @@ if CONFIG['ENABLE_TESTS']: 'tests/chrome.ini', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'nsMathMLChar.cpp', 'nsMathMLContainerFrame.cpp', 'nsMathMLFrame.cpp', diff --git a/layout/mathml/nsMathMLOperators.cpp b/layout/mathml/nsMathMLOperators.cpp index bbb03014b..9a9f413b4 100644 --- a/layout/mathml/nsMathMLOperators.cpp +++ b/layout/mathml/nsMathMLOperators.cpp @@ -7,6 +7,7 @@ #include "nsCOMPtr.h" #include "nsDataHashtable.h" #include "nsHashKeys.h" +#include "nsNetUtil.h" #include "nsTArray.h" #include "nsIPersistentProperties2.h" diff --git a/layout/mathml/nsMathMLmfencedFrame.cpp b/layout/mathml/nsMathMLmfencedFrame.cpp index ca780e649..a5f5ed4d9 100644 --- a/layout/mathml/nsMathMLmfencedFrame.cpp +++ b/layout/mathml/nsMathMLmfencedFrame.cpp @@ -3,13 +3,13 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - #include "nsMathMLmfencedFrame.h" #include "nsRenderingContext.h" #include "nsMathMLChar.h" #include <algorithm> using namespace mozilla; +using namespace mozilla::gfx; // // <mfenced> -- surround content with a pair of fences diff --git a/layout/tools/layout-debug/src/moz.build b/layout/tools/layout-debug/src/moz.build index be7abcab0..b3f7d5e06 100644 --- a/layout/tools/layout-debug/src/moz.build +++ b/layout/tools/layout-debug/src/moz.build @@ -15,7 +15,7 @@ EXPORTS += [ 'nsLayoutDebugCIID.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'nsDebugFactory.cpp', 'nsLayoutDebugCLH.cpp', 'nsLayoutDebuggingTools.cpp', |