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

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

Issue 2414323002: Move AlreadySpellCheckedFlag from NodeFlags to ElementFlags (Closed)
Patch Set: Created 4 years, 2 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: 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 d058ecf64fd38205cc828e79db15d31a5971b5ff..0539a1a6eeab4078ee909272e8db62fa71dcb95d 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -765,11 +765,6 @@ class CORE_EXPORT Node : public EventTarget {
HTMLSlotElement* assignedSlot() const;
HTMLSlotElement* assignedSlotForBinding();
- void setAlreadySpellChecked(bool flag) {
- setFlag(flag, AlreadySpellCheckedFlag);
- }
- bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); }
-
bool isFinishedParsingChildren() const {
return getFlag(IsFinishedParsingChildrenFlag);
}
@@ -835,13 +830,12 @@ class CORE_EXPORT Node : public EventTarget {
HasWeakReferencesFlag = 1 << 24,
V8CollectableDuringMinorGCFlag = 1 << 25,
HasEventTargetDataFlag = 1 << 26,
- AlreadySpellCheckedFlag = 1 << 27,
- V0CustomElementFlag = 1 << 28,
- V0CustomElementUpgradedFlag = 1 << 29,
+ V0CustomElementFlag = 1 << 27,
+ V0CustomElementUpgradedFlag = 1 << 28,
- NeedsReattachLayoutTree = 1 << 30,
- ChildNeedsReattachLayoutTree = 1 << 31,
+ NeedsReattachLayoutTree = 1 << 29,
+ ChildNeedsReattachLayoutTree = 1 << 30,
DefaultNodeFlags = IsFinishedParsingChildrenFlag | NeedsReattachStyleChange
};

Powered by Google App Engine
This is Rietveld 408576698