| OLD | NEW |
| 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" |
| 11 #include "vm/port.h" | 11 #include "vm/port.h" |
| 12 | 12 |
| 13 namespace dart { | 13 namespace dart { |
| 14 | 14 |
| 15 class ActiveVariables; | |
| 16 class CodeBreakpoint; | 15 class CodeBreakpoint; |
| 17 class Isolate; | 16 class Isolate; |
| 18 class JSONArray; | 17 class JSONArray; |
| 19 class JSONStream; | 18 class JSONStream; |
| 20 class ObjectPointerVisitor; | 19 class ObjectPointerVisitor; |
| 21 class RemoteObjectCache; | 20 class RemoteObjectCache; |
| 22 class SourceBreakpoint; | 21 class SourceBreakpoint; |
| 23 class StackFrame; | 22 class StackFrame; |
| 24 | 23 |
| 25 // SourceBreakpoint represents a user-specified breakpoint location in | 24 // SourceBreakpoint represents a user-specified breakpoint location in |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 | 562 |
| 564 friend class Isolate; | 563 friend class Isolate; |
| 565 friend class SourceBreakpoint; | 564 friend class SourceBreakpoint; |
| 566 DISALLOW_COPY_AND_ASSIGN(Debugger); | 565 DISALLOW_COPY_AND_ASSIGN(Debugger); |
| 567 }; | 566 }; |
| 568 | 567 |
| 569 | 568 |
| 570 } // namespace dart | 569 } // namespace dart |
| 571 | 570 |
| 572 #endif // VM_DEBUGGER_H_ | 571 #endif // VM_DEBUGGER_H_ |
| OLD | NEW |