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

Unified Diff: Source/core/dom/Text.h

Issue 875503003: Allow Oilpan heap objects account for their external allocations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adjust urgent GC limits + rebase Created 5 years, 10 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 | Source/core/dom/Text.cpp » ('j') | Source/core/dom/Text.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Text.h
diff --git a/Source/core/dom/Text.h b/Source/core/dom/Text.h
index 1b4c0bf5594927bb2172308c8adb85cf227810b9..e0bf2d0378c355623fa65af4b7ee9c8f9f07f0ee 100644
--- a/Source/core/dom/Text.h
+++ b/Source/core/dom/Text.h
@@ -61,6 +61,10 @@ public:
virtual bool canContainRangeEndPoint() const override final { return true; }
virtual NodeType nodeType() const override;
+#if ENABLE(OILPAN)
haraken 2015/02/19 23:47:43 You can remove ENABLE(OILPAN). We normally add ENA
sof 2015/02/20 09:33:49 I know :) Just didn't want to increase the vtbl of
haraken 2015/02/23 08:42:27 The Text object already has virtual methods, doesn
sof 2015/02/23 12:26:13 It does, that wasn't the concern, but if it would
+ virtual void trace(Visitor*) override;
+#endif
+
protected:
Text(TreeScope& treeScope, const String& data, ConstructionType type)
: CharacterData(treeScope, data, type) { }
« no previous file with comments | « no previous file | Source/core/dom/Text.cpp » ('j') | Source/core/dom/Text.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698