mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
Bug 1768189 - Part 36: Apply modernize-concat-nested-namespaces to dom/svg/SVGMetadataElement.h ... r=andi
Depends on D145771 Differential Revision: https://phabricator.services.mozilla.com/D145772
This commit is contained in:
parent
03667957e8
commit
1d101a2f00
@ -13,8 +13,7 @@
|
||||
nsresult NS_NewSVGMetadataElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGMetadataElementBase = SVGElement;
|
||||
|
||||
@ -34,7 +33,6 @@ class SVGMetadataElement final : public SVGMetadataElementBase {
|
||||
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGMETADATAELEMENT_H_
|
||||
|
@ -27,8 +27,7 @@ NS_IMPL_NS_NEW_SVG_ELEMENT(Path)
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGPathElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -400,5 +399,4 @@ bool SVGPathElement::IsDPropertyChangedViaCSS(const ComputedStyle& aNewStyle,
|
||||
return aNewStyle.StyleSVGReset()->mD != aOldStyle.StyleSVGReset()->mD;
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -16,9 +16,7 @@
|
||||
nsresult NS_NewSVGPathElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGPathElementBase = SVGGeometryElement;
|
||||
|
||||
@ -133,7 +131,6 @@ class SVGPathElement final : public SVGPathElementBase {
|
||||
SVGAnimatedPathSegList mD;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGPATHELEMENT_H_
|
||||
|
@ -16,8 +16,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Pattern)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using namespace SVGUnitTypes_Binding;
|
||||
|
||||
@ -176,5 +175,4 @@ SVGElement::StringAttributesInfo SVGPatternElement::GetStringInfo() {
|
||||
ArrayLength(sStringInfo));
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -11,8 +11,7 @@
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Implementation
|
||||
@ -127,5 +126,4 @@ bool SVGPolyElement::GetGeometryBounds(Rect* aBounds,
|
||||
}
|
||||
return true;
|
||||
}
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -11,8 +11,7 @@
|
||||
#include "SVGAnimatedPointList.h"
|
||||
#include "SVGGeometryElement.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class DOMSVGPointList;
|
||||
|
||||
@ -59,7 +58,6 @@ class SVGPolyElement : public SVGPolyElementBase {
|
||||
SVGAnimatedPointList mPoints;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGPOLYELEMENT_H_
|
||||
|
@ -13,8 +13,7 @@ using namespace mozilla::gfx;
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Polygon)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGPolygonElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -75,5 +74,4 @@ already_AddRefed<Path> SVGPolygonElement::BuildPath(PathBuilder* aBuilder) {
|
||||
return aBuilder->Finish();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -13,8 +13,7 @@
|
||||
nsresult NS_NewSVGPolygonElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGPolygonElementBase = SVGPolyElement;
|
||||
|
||||
@ -36,7 +35,6 @@ class SVGPolygonElement final : public SVGPolygonElementBase {
|
||||
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGPOLYGONELEMENT_H_
|
||||
|
@ -12,8 +12,7 @@ using namespace mozilla::gfx;
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Polyline)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGPolylineElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -50,5 +49,4 @@ already_AddRefed<Path> SVGPolylineElement::BuildPath(PathBuilder* aBuilder) {
|
||||
return aBuilder->Finish();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -12,8 +12,7 @@
|
||||
nsresult NS_NewSVGPolylineElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGPolylineElementBase = SVGPolyElement;
|
||||
|
||||
@ -35,7 +34,6 @@ class SVGPolylineElement final : public SVGPolylineElementBase {
|
||||
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGPOLYLINEELEMENT_H_
|
||||
|
@ -13,8 +13,7 @@
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// nsISupports methods:
|
||||
@ -151,5 +150,4 @@ void SVGRect::SetHeight(float aHeight, ErrorResult& aRv) {
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -13,8 +13,7 @@
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// SVGRect class
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class SVGSVGElement;
|
||||
|
||||
@ -83,7 +82,6 @@ class SVGRect final : public nsWrapperCache {
|
||||
const RectType mType;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGRECT_H_
|
||||
|
@ -19,8 +19,7 @@ NS_IMPL_NS_NEW_SVG_ELEMENT(Rect)
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class DOMSVGAnimatedLength;
|
||||
|
||||
@ -278,5 +277,4 @@ nsCSSPropertyID SVGRectElement::GetCSSPropertyIdForAttrEnum(uint8_t aAttrEnum) {
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -32,8 +32,7 @@ NS_IMPL_NS_NEW_SVG_ELEMENT_CHECK_PARSER(SVG)
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using namespace SVGPreserveAspectRatio_Binding;
|
||||
using namespace SVGSVGElement_Binding;
|
||||
@ -585,5 +584,4 @@ SVGAnimatedTransformList* SVGSVGElement::GetTransformInternal() const {
|
||||
: mTransforms.get();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -14,8 +14,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT_CHECK_PARSER(Script)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGScriptElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -220,5 +219,4 @@ CORSMode SVGScriptElement::GetCORSMode() const {
|
||||
return AttrValueToCORSMode(GetParsedAttr(nsGkAtoms::crossorigin));
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -16,8 +16,7 @@ nsresult NS_NewSVGScriptElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
||||
mozilla::dom::FromParser aFromParser);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGScriptElementBase = SVGElement;
|
||||
|
||||
@ -84,7 +83,6 @@ class SVGScriptElement final : public SVGScriptElementBase,
|
||||
static StringInfo sStringInfo[2];
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGSCRIPTELEMENT_H_
|
||||
|
@ -9,8 +9,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Set)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGSetElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -35,5 +34,4 @@ SMILAnimationFunction& SVGSetElement::AnimationFunction() {
|
||||
return mAnimationFunction;
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -14,8 +14,7 @@
|
||||
nsresult NS_NewSVGSetElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class SVGSetElement final : public SVGAnimationElement {
|
||||
protected:
|
||||
@ -38,7 +37,6 @@ class SVGSetElement final : public SVGAnimationElement {
|
||||
virtual SMILAnimationFunction& AnimationFunction() override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGSETELEMENT_H_
|
||||
|
@ -9,8 +9,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Stop)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGStopElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -57,5 +56,4 @@ SVGStopElement::IsAttributeMapped(const nsAtom* name) const {
|
||||
SVGStopElementBase::IsAttributeMapped(name);
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -13,8 +13,7 @@
|
||||
nsresult NS_NewSVGStopElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGStopElementBase = SVGElement;
|
||||
|
||||
@ -42,7 +41,6 @@ class SVGStopElement final : public SVGStopElementBase {
|
||||
static NumberInfo sNumberInfo;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGSTOPELEMENT_H_
|
||||
|
@ -16,8 +16,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Style)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGStyleElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -197,5 +196,4 @@ Maybe<LinkStyle::SheetInfo> SVGStyleElement::GetStyleSheetInfo() {
|
||||
});
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -15,8 +15,7 @@
|
||||
nsresult NS_NewSVGStyleElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGStyleElementBase = SVGElement;
|
||||
|
||||
@ -87,7 +86,6 @@ class SVGStyleElement final : public SVGStyleElementBase,
|
||||
void ContentChanged(nsIContent* aContent);
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGSTYLEELEMENT_H_
|
||||
|
@ -15,8 +15,7 @@ class nsIFrame;
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Switch)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGSwitchElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -155,5 +154,4 @@ nsIContent* SVGSwitchElement::FindActiveChild() const {
|
||||
return bestChild ? bestChild : defaultChild;
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -9,8 +9,7 @@
|
||||
|
||||
NS_IMPL_NS_NEW_SVG_ELEMENT(Symbol)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
JSObject* SVGSymbolElement::WrapNode(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
@ -35,5 +34,4 @@ SVGSymbolElement::SVGSymbolElement(
|
||||
|
||||
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGSymbolElement)
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -12,8 +12,7 @@
|
||||
nsresult NS_NewSVGSymbolElement(
|
||||
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
using SVGSymbolElementBase = SVGViewportElement;
|
||||
|
||||
@ -35,7 +34,6 @@ class SVGSymbolElement final : public SVGSymbolElementBase {
|
||||
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // DOM_SVG_SVGSYMBOLELEMENT_H_
|
||||
|
Loading…
Reference in New Issue
Block a user