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

Unified Diff: Source/core/dom/DocumentType.h

Issue 282823004: Remove internalSubset from DocumentType (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove corresponding use counter Created 6 years, 7 months 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
« no previous file with comments | « no previous file | Source/core/dom/DocumentType.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentType.h
diff --git a/Source/core/dom/DocumentType.h b/Source/core/dom/DocumentType.h
index 50efcec815b4ebd9a7e10d45a5dc24efbd95e8d2..905189545834570fd4428ccddd8c0c85ad923bff 100644
--- a/Source/core/dom/DocumentType.h
+++ b/Source/core/dom/DocumentType.h
@@ -40,7 +40,6 @@ public:
const String& name() const { return m_name; }
const String& publicId() const { return m_publicId; }
const String& systemId() const { return m_systemId; }
- const String& internalSubset() const { return m_subset; }
private:
DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
@@ -56,7 +55,6 @@ private:
String m_name;
String m_publicId;
String m_systemId;
- String m_subset;
};
DEFINE_NODE_TYPE_CASTS(DocumentType, isDocumentTypeNode());
« no previous file with comments | « no previous file | Source/core/dom/DocumentType.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698