Index: Source/core/html/HTMLScriptElement.h |
diff --git a/Source/core/html/HTMLScriptElement.h b/Source/core/html/HTMLScriptElement.h |
index 325bc319c5ec10b5d3d425c23f99151693f28358..d4e0efd047e2c971b5c2e0ffbd8a75dde315c45e 100644 |
--- a/Source/core/html/HTMLScriptElement.h |
+++ b/Source/core/html/HTMLScriptElement.h |
@@ -33,7 +33,7 @@ class ScriptLoader; |
class HTMLScriptElement FINAL : public HTMLElement, public ScriptLoaderClient { |
public: |
- static PassRefPtr<HTMLScriptElement> create(const QualifiedName&, Document&, bool wasInsertedByParser, bool alreadyStarted = false); |
+ static PassRefPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false); |
String text() { return textFromChildren(); } |
void setText(const String&); |
@@ -46,7 +46,7 @@ public: |
ScriptLoader* loader() const { return m_loader.get(); } |
private: |
- HTMLScriptElement(const QualifiedName&, Document&, bool wasInsertedByParser, bool alreadyStarted); |
+ HTMLScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted); |
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; |
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |