| 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_tools_api.h" | 8 #include "include/dart_tools_api.h" |
| 9 | 9 |
| 10 #include "vm/allocation.h" | 10 #include "vm/allocation.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 private: | 59 private: |
| 60 ObjectIdRing* ring_; | 60 ObjectIdRing* ring_; |
| 61 ObjectIdRing::IdPolicy policy_; | 61 ObjectIdRing::IdPolicy policy_; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 | 64 |
| 65 class StreamInfo { | 65 class StreamInfo { |
| 66 public: | 66 public: |
| 67 explicit StreamInfo(const char* id) : id_(id), enabled_(false) {} | 67 explicit StreamInfo(const char* id) : id_(id), enabled_(false) {} |
| 68 | 68 |
| 69 const char* id() { return id_; } | 69 const char* id() const { return id_; } |
| 70 | 70 |
| 71 void set_enabled(bool value) { enabled_ = value; } | 71 void set_enabled(bool value) { enabled_ = value; } |
| 72 bool enabled() { return enabled_; } | 72 bool enabled() const { return enabled_; } |
| 73 | 73 |
| 74 private: | 74 private: |
| 75 const char* id_; | 75 const char* id_; |
| 76 bool enabled_; | 76 bool enabled_; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 | 79 |
| 80 class Service : public AllStatic { | 80 class Service : public AllStatic { |
| 81 public: | 81 public: |
| 82 // Handles a message which is not directed to an isolate. | 82 // Handles a message which is not directed to an isolate. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 static bool needs_isolate_events_; | 199 static bool needs_isolate_events_; |
| 200 static bool needs_debug_events_; | 200 static bool needs_debug_events_; |
| 201 static bool needs_gc_events_; | 201 static bool needs_gc_events_; |
| 202 static bool needs_echo_events_; | 202 static bool needs_echo_events_; |
| 203 static bool needs_graph_events_; | 203 static bool needs_graph_events_; |
| 204 }; | 204 }; |
| 205 | 205 |
| 206 } // namespace dart | 206 } // namespace dart |
| 207 | 207 |
| 208 #endif // VM_SERVICE_H_ | 208 #endif // VM_SERVICE_H_ |
| OLD | NEW |