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

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: Avoid unnecessary 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
« no previous file with comments | « src/close-table.h ('k') | src/factory.cc » ('j') | src/objects.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/factory.h
diff --git a/src/factory.h b/src/factory.h
index 5562ef4ec2a608ba9c4176dd77da4011fe767f79..c20ac125b4b917cf2078cfb31c693f7257a1b862 100644
--- a/src/factory.h
+++ b/src/factory.h
@@ -35,6 +35,9 @@
namespace v8 {
namespace internal {
+class CloseTableMap;
+class CloseTableSet;
+
// Interface for handle based allocation.
class Factory {
@@ -82,6 +85,9 @@ class Factory {
int at_least_space_for,
MinimumCapacity capacity_option = USE_DEFAULT_MINIMUM_CAPACITY);
+ Handle<CloseTableSet> NewCloseTableSet();
+ Handle<CloseTableMap> NewCloseTableMap();
+
Handle<WeakHashTable> NewWeakHashTable(int at_least_space_for);
Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors,
« no previous file with comments | « src/close-table.h ('k') | src/factory.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698