Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/Document.h |
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
| index dedff943c98acf93cda3678cece0d3ac70e6a1ae..ea804e334605b95ad4994f6ef238b7a9f32c49aa 100644 |
| --- a/third_party/WebKit/Source/core/dom/Document.h |
| +++ b/third_party/WebKit/Source/core/dom/Document.h |
| @@ -370,6 +370,10 @@ class CORE_EXPORT Document : public ContainerNode, |
| const AtomicString& contentLanguage() const { return m_contentLanguage; } |
| void setContentLanguage(const AtomicString&); |
| + const AtomicString& documentLanguage() const; |
| + |
| + Vector<AtomicString> getMetaValues(const AtomicString& name) const; |
|
jbroman
2016/12/16 16:17:42
Comment (here, and possibly also in WebDocument.h)
adithyas
2016/12/16 21:57:17
Done.
|
| + |
| String xmlEncoding() const { return m_xmlEncoding; } |
| String xmlVersion() const { return m_xmlVersion; } |
| enum StandaloneStatus { StandaloneUnspecified, Standalone, NotStandalone }; |