| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index aac8c9f185a3d2b403500523bcbcff92372eac6d..0dbaba54d65fd4cd1117f9b1c809a76f0353a5ca 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -411,6 +411,8 @@ public:
|
| bool isPluginDocument() const { return m_documentClasses & PluginDocumentClass; }
|
| bool isMediaDocument() const { return m_documentClasses & MediaDocumentClass; }
|
|
|
| + bool isXHTMLMobileProfile() const;
|
| +
|
| bool hasSVGRootNode() const;
|
|
|
| bool isFrameSet() const;
|
| @@ -751,7 +753,6 @@ public:
|
| * @param content The header value (value of the meta tag's "content" attribute)
|
| */
|
| void processHttpEquiv(const String& equiv, const String& content);
|
| - void processViewport(const String& features, ViewportArguments::Type origin);
|
| void updateViewportArguments();
|
| void processReferrerPolicy(const String& policy);
|
|
|
| @@ -1084,9 +1085,6 @@ private:
|
|
|
| void detachParser();
|
|
|
| - typedef void (*ArgumentsCallback)(const String& keyString, const String& valueString, Document*, void* data);
|
| - void processArguments(const String& features, void* data, ArgumentsCallback);
|
| -
|
| virtual bool isDocument() const OVERRIDE { return true; }
|
|
|
| virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
|
|
|