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

Unified Diff: src/factory.h

Issue 202293004: Work in progress: ES6 Maps and Sets with deterministic iteration support (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added growth Created 6 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
Index: src/factory.h
diff --git a/src/factory.h b/src/factory.h
index 5562ef4ec2a608ba9c4176dd77da4011fe767f79..c896d4ff4c1de1e00c58c0eeb6fa7a264a9f8763 100644
--- a/src/factory.h
+++ b/src/factory.h
@@ -35,6 +35,8 @@
namespace v8 {
namespace internal {
+class CloseTableSet;
+
// Interface for handle based allocation.
class Factory {
@@ -82,6 +84,8 @@ class Factory {
int at_least_space_for,
MinimumCapacity capacity_option = USE_DEFAULT_MINIMUM_CAPACITY);
+ Handle<CloseTableSet> NewCloseTableSet();
+
Handle<WeakHashTable> NewWeakHashTable(int at_least_space_for);
Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors,

Powered by Google App Engine
This is Rietveld 408576698