Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(738)

Unified Diff: Source/core/html/shadow/TextControlInnerElements.cpp

Issue 66643004: Remove QualifiedName argument from most HTMLElement::create functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Hack for XML prefix Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/shadow/TextControlInnerElements.cpp
diff --git a/Source/core/html/shadow/TextControlInnerElements.cpp b/Source/core/html/shadow/TextControlInnerElements.cpp
index 93a28d62f510e5d858ea6bb147cda2f92cbfafc5..98a8278630b6051df94fe9f2eb45e807dca268a0 100644
--- a/Source/core/html/shadow/TextControlInnerElements.cpp
+++ b/Source/core/html/shadow/TextControlInnerElements.cpp
@@ -49,7 +49,7 @@ namespace WebCore {
using namespace HTMLNames;
TextControlInnerContainer::TextControlInnerContainer(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
{
}
@@ -68,7 +68,7 @@ RenderObject* TextControlInnerContainer::createRenderer(RenderStyle*)
// ---------------------------
EditingViewPortElement::EditingViewPortElement(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
{
setHasCustomStyleCallbacks();
}
@@ -105,7 +105,7 @@ PassRefPtr<RenderStyle> EditingViewPortElement::customStyleForRenderer()
// ---------------------------
inline TextControlInnerTextElement::TextControlInnerTextElement(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
{
setHasCustomStyleCallbacks();
}
@@ -153,7 +153,7 @@ PassRefPtr<RenderStyle> TextControlInnerTextElement::customStyleForRenderer()
// ----------------------------
inline SearchFieldDecorationElement::SearchFieldDecorationElement(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
{
}
@@ -201,7 +201,7 @@ bool SearchFieldDecorationElement::willRespondToMouseClickEvents()
// ----------------------------
inline SearchFieldCancelButtonElement::SearchFieldCancelButtonElement(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
, m_capturing(false)
{
}
@@ -278,7 +278,7 @@ bool SearchFieldCancelButtonElement::willRespondToMouseClickEvents()
#if ENABLE(INPUT_SPEECH)
inline InputFieldSpeechButtonElement::InputFieldSpeechButtonElement(Document& document)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
, m_capturing(false)
, m_state(Idle)
, m_listenerId(0)

Powered by Google App Engine
This is Rietveld 408576698