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

Unified Diff: src/objects-printer.cc

Issue 2685163006: [inspector] migrate set/remove BreakPoint to debug-interface.h (Closed)
Patch Set: added comment about inlined jsframe index Created 3 years, 10 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/objects-inl.h ('k') | src/wasm/wasm-objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index df6854db7a0c3593c1033ec53582bec311fe1cf8..7e96af5f7bee833f87bf98ae3411ddc63f8402bf 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -1409,6 +1409,12 @@ void BreakPointInfo::BreakPointInfoPrint(std::ostream& os) { // NOLINT
os << "\n";
}
+void BreakPoint::BreakPointPrint(std::ostream& os) { // NOLINT
+ HeapObject::PrintHeader(os, "BreakPoint");
+ os << "\n - condition: " << Brief(condition());
+ os << "\n - data: " << Brief(data());
+ os << "\n";
+}
static void PrintBitMask(std::ostream& os, uint32_t value) { // NOLINT
for (int i = 0; i < 32; i++) {
« no previous file with comments | « src/objects-inl.h ('k') | src/wasm/wasm-objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698