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

Side by Side Diff: runtime/vm/debugger.h

Issue 14628009: - Fixed some old-style casts. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/filter.cc ('k') | runtime/vm/debugger.cc » ('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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_DEBUGGER_H_ 5 #ifndef VM_DEBUGGER_H_
6 #define VM_DEBUGGER_H_ 6 #define VM_DEBUGGER_H_
7 7
8 #include "include/dart_debugger_api.h" 8 #include "include/dart_debugger_api.h"
9 9
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 371
372 // If >= 0, last_bpt_line contains the line number of the last breakpoint 372 // If >= 0, last_bpt_line contains the line number of the last breakpoint
373 // location for which the breakpoint callback function was called. 373 // location for which the breakpoint callback function was called.
374 intptr_t last_bpt_line_; 374 intptr_t last_bpt_line_;
375 375
376 // Do not call back to breakpoint handler if this flag is set. 376 // Do not call back to breakpoint handler if this flag is set.
377 // Effectively this means ignoring breakpoints. Set when Dart code may 377 // Effectively this means ignoring breakpoints. Set when Dart code may
378 // be run as a side effect of getting values of fields. 378 // be run as a side effect of getting values of fields.
379 bool ignore_breakpoints_; 379 bool ignore_breakpoints_;
380 380
381 intptr_t exc_pause_info_; 381 Dart_ExceptionPauseInfo exc_pause_info_;
382 382
383 static BreakpointHandler* bp_handler_; 383 static BreakpointHandler* bp_handler_;
384 static EventHandler* event_handler_; 384 static EventHandler* event_handler_;
385 385
386 friend class Isolate; 386 friend class Isolate;
387 friend class SourceBreakpoint; 387 friend class SourceBreakpoint;
388 DISALLOW_COPY_AND_ASSIGN(Debugger); 388 DISALLOW_COPY_AND_ASSIGN(Debugger);
389 }; 389 };
390 390
391 391
392 } // namespace dart 392 } // namespace dart
393 393
394 #endif // VM_DEBUGGER_H_ 394 #endif // VM_DEBUGGER_H_
OLDNEW
« no previous file with comments | « runtime/bin/filter.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698