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

Unified Diff: runtime/vm/service_event.h

Issue 1149983003: Reapply "Per-closure breakpoints; restructure breakpoint implementation to keep a list of condition… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 5 years, 7 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 | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service_event.h
diff --git a/runtime/vm/service_event.h b/runtime/vm/service_event.h
index e74ee66f2929dd039c794600aba734073968312f..0c90d006ffedc087ed985d55e7db6348de861e87 100644
--- a/runtime/vm/service_event.h
+++ b/runtime/vm/service_event.h
@@ -50,10 +50,10 @@ class ServiceEvent {
EventType type() const { return type_; }
- SourceBreakpoint* breakpoint() const {
+ Breakpoint* breakpoint() const {
return breakpoint_;
}
- void set_breakpoint(SourceBreakpoint* bpt) {
+ void set_breakpoint(Breakpoint* bpt) {
ASSERT(type() == kPauseBreakpoint ||
type() == kBreakpointAdded ||
type() == kBreakpointResolved ||
@@ -103,7 +103,7 @@ class ServiceEvent {
private:
Isolate* isolate_;
EventType type_;
- SourceBreakpoint* breakpoint_;
+ Breakpoint* breakpoint_;
ActivationFrame* top_frame_;
const Object* exception_;
const Object* inspectee_;
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698