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

Unified Diff: src/external-reference-table.cc

Issue 2650803003: [inspector] change target promise for kDebugWillHandle & kDebugDidHandle (Closed)
Patch Set: added missing guard in asyncTaskCreated Created 3 years, 11 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/external-reference-table.cc
diff --git a/src/external-reference-table.cc b/src/external-reference-table.cc
index 57dc09ce3c3aa2635ac53484246fc95a355940e8..b6fe0eeea26b239110018efc760a61d684309b40 100644
--- a/src/external-reference-table.cc
+++ b/src/external-reference-table.cc
@@ -253,8 +253,9 @@ void ExternalReferenceTable::AddReferences(Isolate* isolate) {
"double_absolute_constant");
Add(ExternalReference::address_of_double_neg_constant().address(),
"double_negate_constant");
- Add(ExternalReference::promise_hook_address(isolate).address(),
- "Isolate::promise_hook_address()");
+ Add(ExternalReference::promise_hook_or_debug_is_active_address(isolate)
+ .address(),
+ "Isolate::promise_hook_or_debug_is_active_address()");
// Debug addresses
Add(ExternalReference::debug_after_break_target_address(isolate).address(),

Powered by Google App Engine
This is Rietveld 408576698