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

Unified Diff: src/objects.h

Issue 1475633002: Correctly handlify Dictionary::CollectKeysTo. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 89659dad76a65b821e55861f734cce8021b370d7..d13ddd8dc06c3ad250b6f06e0efac8cf9a75be1f 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -3406,7 +3406,8 @@ class Dictionary: public HashTable<Derived, Shape, Key> {
SortMode sort_mode);
// Collect the keys into the given KeyAccumulator, in ascending chronological
// order of property creation.
- void CollectKeysTo(KeyAccumulator* keys, PropertyAttributes filter);
+ static void CollectKeysTo(Handle<Dictionary<Derived, Shape, Key> > dictionary,
+ KeyAccumulator* keys, PropertyAttributes filter);
// Copies enumerable keys to preallocated fixed array.
void CopyEnumKeysTo(FixedArray* storage);
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698