summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/html_param_element.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/html_param_element.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/html/html_param_element.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/html_param_element.cc b/chromium/third_party/blink/renderer/core/html/html_param_element.cc
index f896142ab42..c910bed0cde 100644
--- a/chromium/third_party/blink/renderer/core/html/html_param_element.cc
+++ b/chromium/third_party/blink/renderer/core/html/html_param_element.cc
@@ -28,10 +28,10 @@
namespace blink {
-using namespace HTMLNames;
+using namespace html_names;
inline HTMLParamElement::HTMLParamElement(Document& document)
- : HTMLElement(paramTag, document) {}
+ : HTMLElement(kParamTag, document) {}
DEFINE_NODE_FACTORY(HTMLParamElement)
@@ -42,7 +42,7 @@ const AtomicString& HTMLParamElement::GetName() const {
}
const AtomicString& HTMLParamElement::Value() const {
- return FastGetAttribute(valueAttr);
+ return FastGetAttribute(kValueAttr);
}
// HTML5 says that an object resource's URL is specified by the object's
@@ -58,7 +58,7 @@ bool HTMLParamElement::IsURLParameter(const String& name) {
}
bool HTMLParamElement::IsURLAttribute(const Attribute& attribute) const {
- if (attribute.GetName() == valueAttr && IsURLParameter(GetName()))
+ if (attribute.GetName() == kValueAttr && IsURLParameter(GetName()))
return true;
return HTMLElement::IsURLAttribute(attribute);
}