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

Unified Diff: src/runtime/runtime.h

Issue 2672213002: [inspector] introduced v8::debug::EntriesPreview for inspector (Closed)
Patch Set: rebased tests Created 3 years, 10 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/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 9b68c3accb96bc0e36e722ad5f1d8258e444a768..7aca087b10a7545110ee5adefa7ec8839fe9048b 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -1109,6 +1109,13 @@ class Runtime : public AllStatic {
static MaybeHandle<JSArray> GetInternalProperties(Isolate* isolate,
Handle<Object>);
+
+ static Handle<JSArray> GetWeakMapEntries(Isolate* isolate,
+ Handle<JSWeakCollection>,
+ int max_entries);
+ static Handle<JSArray> GetWeakSetEntries(Isolate* isolate,
+ Handle<JSWeakCollection>,
+ int max_values);
};

Powered by Google App Engine
This is Rietveld 408576698