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

Unified Diff: Source/WebKit/chromium/public/WebNode.h

Issue 14990005: Remove ENTITY_REFERENCE_NODE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove some empty lines Created 7 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
Index: Source/WebKit/chromium/public/WebNode.h
diff --git a/Source/WebKit/chromium/public/WebNode.h b/Source/WebKit/chromium/public/WebNode.h
index e1e7f53c20cba42b2b629d16dedbb225e3b55252..bc4538ed423a1ca83ec081709e651ba54d09685e 100644
--- a/Source/WebKit/chromium/public/WebNode.h
+++ b/Source/WebKit/chromium/public/WebNode.h
@@ -73,19 +73,19 @@ public:
enum NodeType {
ElementNode = 1,
- AttributeNode,
- TextNode,
- CDataSectionNode,
- EntityReferenceNode,
- EntityNode,
- ProcessingInstructionsNode,
- CommentNode,
- DocumentNode,
- DocumentTypeNode,
- DocumentFragmentNode,
- NotationNode,
- XPathNamespaceNode,
- ShadowRootNode
+ AttributeNode = 2,
+ TextNode = 3,
+ CDataSectionNode = 4,
+ // EntityReferenceNodes are deprecated and impossible to create in WebKit.
+ EntityNode = 6,
+ ProcessingInstructionsNode = 7,
+ CommentNode = 8,
+ DocumentNode = 9,
+ DocumentTypeNode = 10,
+ DocumentFragmentNode = 11,
+ NotationNode = 12,
+ XPathNamespaceNode = 13,
+ ShadowRootNode = 14
};
WEBKIT_EXPORT NodeType nodeType() const;
« no previous file with comments | « LayoutTests/webexposed/global-constructors-listing-expected.txt ('k') | Source/WebKit/chromium/src/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698