| Index: Source/core/html/HTMLMetaElement.h
|
| diff --git a/Source/core/html/HTMLMetaElement.h b/Source/core/html/HTMLMetaElement.h
|
| index 2c2590b3b78d0d93b296f537fd95868535f75a07..2ec32c2252635a5e86fe1257551c22a3798e97cb 100644
|
| --- a/Source/core/html/HTMLMetaElement.h
|
| +++ b/Source/core/html/HTMLMetaElement.h
|
| @@ -38,14 +38,13 @@ enum ViewportErrorCode {
|
| class HTMLMetaElement FINAL : public HTMLElement {
|
| public:
|
| static PassRefPtr<HTMLMetaElement> create(Document&);
|
| - static PassRefPtr<HTMLMetaElement> create(const QualifiedName&, Document&);
|
|
|
| String content() const;
|
| String httpEquiv() const;
|
| String name() const;
|
|
|
| private:
|
| - HTMLMetaElement(const QualifiedName&, Document&);
|
| + explicit HTMLMetaElement(Document&);
|
|
|
| typedef void (HTMLMetaElement::*KeyValuePairCallback)(const String& key, const String& value, void* data);
|
| void processViewportKeyValuePair(const String& key, const String& value, void* data);
|
|
|