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

Unified Diff: Source/core/html/shadow/MediaControlElementTypes.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/MediaControlElementTypes.cpp
diff --git a/Source/core/html/shadow/MediaControlElementTypes.cpp b/Source/core/html/shadow/MediaControlElementTypes.cpp
index eca65c99a1aef3000243c6ba989019b16e477d7c..dc7f986e04e2a68b1a19d40f8400e59bbc30116d 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.cpp
+++ b/Source/core/html/shadow/MediaControlElementTypes.cpp
@@ -103,7 +103,7 @@ void MediaControlElement::setDisplayType(MediaControlElementType displayType)
// ----------------------------
MediaControlDivElement::MediaControlDivElement(Document& document, MediaControlElementType displayType)
- : HTMLDivElement(divTag, document)
+ : HTMLDivElement(document)
, MediaControlElement(displayType, this)
{
}
@@ -111,7 +111,7 @@ MediaControlDivElement::MediaControlDivElement(Document& document, MediaControlE
// ----------------------------
MediaControlInputElement::MediaControlInputElement(Document& document, MediaControlElementType displayType)
- : HTMLInputElement(inputTag, document, 0, false)
+ : HTMLInputElement(document, 0, false)
, MediaControlElement(displayType, this)
{
}

Powered by Google App Engine
This is Rietveld 408576698