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

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2577203002: Remove use of WebNode/WebElement in translate_helper (Closed)
Patch Set: Minor changes Created 4 years 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: 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 };

Powered by Google App Engine
This is Rietveld 408576698