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

Unified Diff: src/factory.h

Issue 2415023002: [promises] Move async debug event creation to c++ (Closed)
Patch Set: use consts Created 4 years, 2 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 682bc4424a2fceb5f14959ff2027f0efda4115ea..84e0aec9b05b8158bf494be7bb394c3e526a07fe 100644
--- a/src/factory.h
+++ b/src/factory.h
@@ -63,14 +63,13 @@ class Factory final {
// Create a new PromiseReactionJobInfo struct.
Handle<PromiseReactionJobInfo> NewPromiseReactionJobInfo(
Handle<Object> value, Handle<Object> tasks, Handle<Object> deferred,
- Handle<Object> before_debug, Handle<Object> after_debug_event,
- Handle<Context> context);
+ Handle<Object> id, Handle<Object> name, Handle<Context> context);
// Create a new PromiseResolveThenableJobInfo struct.
Handle<PromiseResolveThenableJobInfo> NewPromiseResolveThenableJobInfo(
Handle<JSReceiver> thenable, Handle<JSReceiver> then,
- Handle<JSFunction> resolve, Handle<JSFunction> reject,
- Handle<Object> before_debug_event, Handle<Object> after_debug_event);
+ Handle<JSFunction> resolve, Handle<JSFunction> reject, Handle<Object> id,
+ Handle<Object> name);
// Create a new PrototypeInfo struct.
Handle<PrototypeInfo> NewPrototypeInfo();

Powered by Google App Engine
This is Rietveld 408576698