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

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

Issue 330383004: Oilpan: Introduce TempRangeScope to avoid needless Range attaches on Document. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/Range.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Range.h
diff --git a/Source/core/dom/Range.h b/Source/core/dom/Range.h
index bb0f769176188a0d54de33ed3dabf43b39608e5b..c31de516a43ba7712242b37cbb1a2488ab57df53 100644
--- a/Source/core/dom/Range.h
+++ b/Source/core/dom/Range.h
@@ -170,6 +170,32 @@ private:
RangeBoundaryPoint m_end;
};
+#if ENABLE(OILPAN)
+// Ranges are registered on the owner document so that they can be
+// updated via the document when the document changes. Ranges are
+// often used as short-lived results of subcomputations that become
+// unreachable without any document modifications. Such short-lived
+// ranges need not be registered with the document. When a
+// TempRangeScope is on the stack created range objects are not
+// attached to the document. With Oilpan this is important to not
+// build up a large set of ranges on the Document that we will waste
+// time updating even though they will never be needed.
+class TempRangeScope {
haraken 2014/06/24 11:57:16 TempRangeScope => TemporaryRangeScope Blink prefe
Mads Ager (chromium) 2014/06/24 12:16:51 Done.
+public:
+ TempRangeScope() { ++s_nesting; }
+ ~TempRangeScope() { --s_nesting; }
+ static bool active() { return s_nesting != 0; }
+private:
+ static unsigned s_nesting;
+};
+#else
+class TempRangeScope {
+public:
+ TempRangeScope() { }
+ static bool active() { return false; }
+};
+#endif
+
PassRefPtrWillBeRawPtr<Range> rangeOfContents(Node*);
bool areRangesEqual(const Range*, const Range*);
« no previous file with comments | « no previous file | Source/core/dom/Range.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698