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

Side by Side Diff: src/counters.h

Issue 2589113002: [api] add API for Promise status and result. (Closed)
Patch Set: addressed comments Created 4 years 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 unified diff | Download patch
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/globals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COUNTERS_H_ 5 #ifndef V8_COUNTERS_H_
6 #define V8_COUNTERS_H_ 6 #define V8_COUNTERS_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/base/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 V(Object_ToString) \ 621 V(Object_ToString) \
622 V(Object_ToUint32) \ 622 V(Object_ToUint32) \
623 V(Object_Uint32Value) \ 623 V(Object_Uint32Value) \
624 V(Persistent_New) \ 624 V(Persistent_New) \
625 V(Private_New) \ 625 V(Private_New) \
626 V(Promise_Catch) \ 626 V(Promise_Catch) \
627 V(Promise_Chain) \ 627 V(Promise_Chain) \
628 V(Promise_HasRejectHandler) \ 628 V(Promise_HasRejectHandler) \
629 V(Promise_Resolver_New) \ 629 V(Promise_Resolver_New) \
630 V(Promise_Resolver_Resolve) \ 630 V(Promise_Resolver_Resolve) \
631 V(Promise_Result) \
632 V(Promise_Status) \
631 V(Promise_Then) \ 633 V(Promise_Then) \
632 V(Proxy_New) \ 634 V(Proxy_New) \
633 V(RangeError_New) \ 635 V(RangeError_New) \
634 V(ReferenceError_New) \ 636 V(ReferenceError_New) \
635 V(RegExp_New) \ 637 V(RegExp_New) \
636 V(ScriptCompiler_Compile) \ 638 V(ScriptCompiler_Compile) \
637 V(ScriptCompiler_CompileFunctionInContext) \ 639 V(ScriptCompiler_CompileFunctionInContext) \
638 V(ScriptCompiler_CompileUnbound) \ 640 V(ScriptCompiler_CompileUnbound) \
639 V(Script_Run) \ 641 V(Script_Run) \
640 V(Set_Add) \ 642 V(Set_Add) \
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 1331
1330 explicit Counters(Isolate* isolate); 1332 explicit Counters(Isolate* isolate);
1331 1333
1332 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1334 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1333 }; 1335 };
1334 1336
1335 } // namespace internal 1337 } // namespace internal
1336 } // namespace v8 1338 } // namespace v8
1337 1339
1338 #endif // V8_COUNTERS_H_ 1340 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698