| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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_TIMELINE_H_ | 5 #ifndef RUNTIME_VM_TIMELINE_H_ |
| 6 #define VM_TIMELINE_H_ | 6 #define RUNTIME_VM_TIMELINE_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" |
| 11 #include "vm/bitfield.h" | 11 #include "vm/bitfield.h" |
| 12 #include "vm/os.h" | 12 #include "vm/os.h" |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 | 15 |
| 16 class JSONArray; | 16 class JSONArray; |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 TimelineEventBlock* Next(); | 907 TimelineEventBlock* Next(); |
| 908 | 908 |
| 909 private: | 909 private: |
| 910 TimelineEventBlock* current_; | 910 TimelineEventBlock* current_; |
| 911 TimelineEventRecorder* recorder_; | 911 TimelineEventRecorder* recorder_; |
| 912 }; | 912 }; |
| 913 | 913 |
| 914 | 914 |
| 915 } // namespace dart | 915 } // namespace dart |
| 916 | 916 |
| 917 #endif // VM_TIMELINE_H_ | 917 #endif // RUNTIME_VM_TIMELINE_H_ |
| OLD | NEW |