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

Unified Diff: Source/core/html/HTMLAudioElement.h

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/HTMLAudioElement.h
diff --git a/Source/core/html/HTMLAudioElement.h b/Source/core/html/HTMLAudioElement.h
index fc3996bbb0c169538cb7a401eeb98397aed6fbca..ff3e6a56d1a4c04083f002f1bfdb26437342fb8c 100644
--- a/Source/core/html/HTMLAudioElement.h
+++ b/Source/core/html/HTMLAudioElement.h
@@ -35,11 +35,11 @@ class Document;
class HTMLAudioElement FINAL : public HTMLMediaElement {
public:
- static PassRefPtr<HTMLAudioElement> create(const QualifiedName&, Document&, bool);
+ static PassRefPtr<HTMLAudioElement> create(Document&, bool);
static PassRefPtr<HTMLAudioElement> createForJSConstructor(Document&, const String& src);
private:
- HTMLAudioElement(const QualifiedName&, Document&, bool);
+ HTMLAudioElement(Document&, bool);
virtual bool isVideo() const OVERRIDE { return false; }
};

Powered by Google App Engine
This is Rietveld 408576698