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

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

Issue 2446423008: Remove HasWeakReferences node flag (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Node.h
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
index bb7635903f3aa1634f5df8b47f7c269609bfaad2..b0549becbe79e8c485a46152b530238fbd7ae169 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -842,19 +842,18 @@ class CORE_EXPORT Node : public EventTarget {
CustomElementStateMask = 0x3 << nodeCustomElementShift,
HasNameOrIsEditingTextFlag = 1 << 23,
- HasWeakReferencesFlag = 1 << 24,
- HasEventTargetDataFlag = 1 << 25,
+ HasEventTargetDataFlag = 1 << 24,
- V0CustomElementFlag = 1 << 26,
- V0CustomElementUpgradedFlag = 1 << 27,
+ V0CustomElementFlag = 1 << 25,
+ V0CustomElementUpgradedFlag = 1 << 26,
- NeedsReattachLayoutTree = 1 << 28,
- ChildNeedsReattachLayoutTree = 1 << 29,
+ NeedsReattachLayoutTree = 1 << 27,
+ ChildNeedsReattachLayoutTree = 1 << 28,
DefaultNodeFlags = IsFinishedParsingChildrenFlag | NeedsReattachStyleChange
};
- // 1 bit remaining.
+ // 3 bits remaining.
bool getFlag(NodeFlags mask) const { return m_nodeFlags & mask; }
void setFlag(bool f, NodeFlags mask) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698