Commit eaedfecc authored by Peter Kasting's avatar Peter Kasting Committed by Commit Bot

Remove using directives ("using namespace x") from blink/renderer/core/svg/.

Bug: 82078
Change-Id: I13e7bd190e628d85f3bacbaca5e33108f94337f8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1866266
Commit-Queue: Peter Kasting <pkasting@chromium.org>
Commit-Queue: Fredrik Söderquist <fs@opera.com>
Auto-Submit: Peter Kasting <pkasting@chromium.org>
Reviewed-by: default avatarFredrik Söderquist <fs@opera.com>
Cr-Commit-Position: refs/heads/master@{#706858}
parent af35e0a3
...@@ -48,8 +48,6 @@ ...@@ -48,8 +48,6 @@
namespace blink { namespace blink {
using namespace html_names;
SVGAElement::SVGAElement(Document& document) SVGAElement::SVGAElement(Document& document)
: SVGGraphicsElement(svg_names::kATag, document), : SVGGraphicsElement(svg_names::kATag, document),
SVGURIReference(this), SVGURIReference(this),
...@@ -183,7 +181,7 @@ bool SVGAElement::ShouldHaveFocusAppearance() const { ...@@ -183,7 +181,7 @@ bool SVGAElement::ShouldHaveFocusAppearance() const {
} }
bool SVGAElement::IsURLAttribute(const Attribute& attribute) const { bool SVGAElement::IsURLAttribute(const Attribute& attribute) const {
return attribute.GetName().LocalName() == kHrefAttr || return attribute.GetName().LocalName() == html_names::kHrefAttr ||
SVGGraphicsElement::IsURLAttribute(attribute); SVGGraphicsElement::IsURLAttribute(attribute);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment