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

Unified Diff: src/objects.h

Issue 2628173005: [inspector] merged type and name of async task event (Closed)
Patch Set: addressed comments 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
« no previous file with comments | « src/js/macros.py ('k') | src/objects-debug.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 97fe1b5ed7cccc2947faf8aa71ba4ccaa53deb05..2502a6edefd6ad719315b653cf1121feecd688bb 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6561,7 +6561,6 @@ class PromiseResolveThenableJobInfo : public Struct {
DECL_ACCESSORS(reject, JSFunction)
DECL_INT_ACCESSORS(debug_id)
- DECL_INT_ACCESSORS(debug_name)
DECL_ACCESSORS(context, Context)
@@ -6570,8 +6569,7 @@ class PromiseResolveThenableJobInfo : public Struct {
static const int kResolveOffset = kThenOffset + kPointerSize;
static const int kRejectOffset = kResolveOffset + kPointerSize;
static const int kDebugIdOffset = kRejectOffset + kPointerSize;
- static const int kDebugNameOffset = kDebugIdOffset + kPointerSize;
- static const int kContextOffset = kDebugNameOffset + kPointerSize;
+ static const int kContextOffset = kDebugIdOffset + kPointerSize;
static const int kSize = kContextOffset + kPointerSize;
DECLARE_CAST(PromiseResolveThenableJobInfo)
@@ -6597,7 +6595,6 @@ class PromiseReactionJobInfo : public Struct {
DECL_ACCESSORS(deferred_on_reject, Object)
DECL_INT_ACCESSORS(debug_id)
- DECL_INT_ACCESSORS(debug_name)
DECL_ACCESSORS(context, Context)
@@ -6609,8 +6606,7 @@ class PromiseReactionJobInfo : public Struct {
static const int kDeferredOnRejectOffset =
kDeferredOnResolveOffset + kPointerSize;
static const int kDebugIdOffset = kDeferredOnRejectOffset + kPointerSize;
- static const int kDebugNameOffset = kDebugIdOffset + kPointerSize;
- static const int kContextOffset = kDebugNameOffset + kPointerSize;
+ static const int kContextOffset = kDebugIdOffset + kPointerSize;
static const int kSize = kContextOffset + kPointerSize;
DECLARE_CAST(PromiseReactionJobInfo)
« no previous file with comments | « src/js/macros.py ('k') | src/objects-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698