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_tools_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 CodeBreakpoint; | 15 class CodeBreakpoint; |
16 class Isolate; | 16 class Isolate; |
17 class JSONArray; | 17 class JSONArray; |
18 class JSONStream; | 18 class JSONStream; |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 | 632 |
633 friend class Isolate; | 633 friend class Isolate; |
634 friend class BreakpointLocation; | 634 friend class BreakpointLocation; |
635 DISALLOW_COPY_AND_ASSIGN(Debugger); | 635 DISALLOW_COPY_AND_ASSIGN(Debugger); |
636 }; | 636 }; |
637 | 637 |
638 | 638 |
639 } // namespace dart | 639 } // namespace dart |
640 | 640 |
641 #endif // VM_DEBUGGER_H_ | 641 #endif // VM_DEBUGGER_H_ |
OLD | NEW |