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

Unified Diff: third_party/WebKit/Source/platform/heap/HeapLinkedStack.h

Issue 2761853003: LinkedStack.h is no longer used, remove it (Closed)
Patch Set: rebase on master, avoid spurious patch dep Created 3 years, 9 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 | « third_party/WebKit/Source/core/css/RuleSet.h ('k') | third_party/WebKit/Source/wtf/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/HeapLinkedStack.h
diff --git a/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h b/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h
index e91df969b5747587e3513b70d6fd219f47b0aed4..23bdcfe4e52818542c45239b7f3828467010cece 100644
--- a/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h
+++ b/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h
@@ -37,6 +37,12 @@
namespace blink {
+// HeapLinkedStack<> is an Oilpan-managed stack that avoids pre-allocation
+// of memory and heap fragmentation.
+//
+// The API was originally implemented on the call stack by LinkedStack<>
+// (now removed: https://codereview.chromium.org/2761853003/).
+// See https://codereview.chromium.org/17314010 for the original use-case.
template <typename T>
class HeapLinkedStack : public GarbageCollected<HeapLinkedStack<T>> {
public:
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleSet.h ('k') | third_party/WebKit/Source/wtf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698