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 |
}; |