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

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

Issue 2461803004: Remove V8CollectableDuringMinorGC node flag (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
« 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 cba7774dd3ae35573d1d60883c2c03542a8c8da5..16bba483ba3465ac369bdda543dac2cad58f4938 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -494,16 +494,6 @@ class CORE_EXPORT Node : public EventTarget {
setFlag(flag, HasEventTargetDataFlag);
}
- bool isV8CollectableDuringMinorGC() const {
- return getFlag(V8CollectableDuringMinorGCFlag);
- }
- void markV8CollectableDuringMinorGC() {
- setFlag(true, V8CollectableDuringMinorGCFlag);
- }
- void clearV8CollectableDuringMinorGC() {
- setFlag(false, V8CollectableDuringMinorGCFlag);
- }
-
virtual void setFocused(bool flag);
virtual void setActive(bool flag = true);
virtual void setDragged(bool flag);
@@ -847,14 +837,13 @@ class CORE_EXPORT Node : public EventTarget {
HasNameOrIsEditingTextFlag = 1 << 23,
HasWeakReferencesFlag = 1 << 24,
- V8CollectableDuringMinorGCFlag = 1 << 25,
- HasEventTargetDataFlag = 1 << 26,
+ HasEventTargetDataFlag = 1 << 25,
- V0CustomElementFlag = 1 << 27,
- V0CustomElementUpgradedFlag = 1 << 28,
+ V0CustomElementFlag = 1 << 26,
+ V0CustomElementUpgradedFlag = 1 << 27,
- NeedsReattachLayoutTree = 1 << 29,
- ChildNeedsReattachLayoutTree = 1 << 30,
+ NeedsReattachLayoutTree = 1 << 28,
+ ChildNeedsReattachLayoutTree = 1 << 29,
DefaultNodeFlags = IsFinishedParsingChildrenFlag | NeedsReattachStyleChange
};
« 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