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

Side by Side Diff: src/debug/interface-types.h

Issue 2819423005: [inspector] removed kDebugPromiseCollected event (Closed)
Patch Set: added a test Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/test-interface.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_DEBUG_INTERFACE_TYPES_H_ 5 #ifndef V8_DEBUG_INTERFACE_TYPES_H_
6 #define V8_DEBUG_INTERFACE_TYPES_H_ 6 #define V8_DEBUG_INTERFACE_TYPES_H_
7 7
8 #include <cstdint> 8 #include <cstdint>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 std::string disassembly; 67 std::string disassembly;
68 OffsetTable offset_table; 68 OffsetTable offset_table;
69 }; 69 };
70 70
71 enum PromiseDebugActionType { 71 enum PromiseDebugActionType {
72 kDebugPromiseCreated, 72 kDebugPromiseCreated,
73 kDebugEnqueueAsyncFunction, 73 kDebugEnqueueAsyncFunction,
74 kDebugEnqueuePromiseResolve, 74 kDebugEnqueuePromiseResolve,
75 kDebugEnqueuePromiseReject, 75 kDebugEnqueuePromiseReject,
76 kDebugPromiseCollected,
77 kDebugWillHandle, 76 kDebugWillHandle,
78 kDebugDidHandle, 77 kDebugDidHandle,
79 }; 78 };
80 79
81 enum BreakLocationType { 80 enum BreakLocationType {
82 kCallBreakLocation, 81 kCallBreakLocation,
83 kReturnBreakLocation, 82 kReturnBreakLocation,
84 kDebuggerStatementBreakLocation, 83 kDebuggerStatementBreakLocation,
85 kCommonBreakLocation 84 kCommonBreakLocation
86 }; 85 };
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 virtual void Time(const ConsoleCallArguments& args) {} 133 virtual void Time(const ConsoleCallArguments& args) {}
135 virtual void TimeEnd(const ConsoleCallArguments& args) {} 134 virtual void TimeEnd(const ConsoleCallArguments& args) {}
136 virtual void TimeStamp(const ConsoleCallArguments& args) {} 135 virtual void TimeStamp(const ConsoleCallArguments& args) {}
137 virtual ~ConsoleDelegate() = default; 136 virtual ~ConsoleDelegate() = default;
138 }; 137 };
139 138
140 } // namespace debug 139 } // namespace debug
141 } // namespace v8 140 } // namespace v8
142 141
143 #endif // V8_DEBUG_INTERFACE_TYPES_H_ 142 #endif // V8_DEBUG_INTERFACE_TYPES_H_
OLDNEW
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/test-interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698