| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_SERVICE_H_ | 5 #ifndef VM_SERVICE_H_ |
| 6 #define VM_SERVICE_H_ | 6 #define VM_SERVICE_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_tools_api.h" |
| 9 | 9 |
| 10 #include "vm/allocation.h" | 10 #include "vm/allocation.h" |
| 11 #include "vm/object_id_ring.h" | 11 #include "vm/object_id_ring.h" |
| 12 #include "vm/os_thread.h" | 12 #include "vm/os_thread.h" |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 | 15 |
| 16 class Array; | 16 class Array; |
| 17 class EmbedderServiceHandler; | 17 class EmbedderServiceHandler; |
| 18 class GCEvent; | 18 class GCEvent; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 static bool needs_isolate_events_; | 117 static bool needs_isolate_events_; |
| 118 static bool needs_debug_events_; | 118 static bool needs_debug_events_; |
| 119 static bool needs_gc_events_; | 119 static bool needs_gc_events_; |
| 120 static bool needs_echo_events_; | 120 static bool needs_echo_events_; |
| 121 static bool needs_graph_events_; | 121 static bool needs_graph_events_; |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace dart | 124 } // namespace dart |
| 125 | 125 |
| 126 #endif // VM_SERVICE_H_ | 126 #endif // VM_SERVICE_H_ |
| OLD | NEW |