| 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_PROFILER_H_ | 5 #ifndef VM_PROFILER_H_ |
| 6 #define VM_PROFILER_H_ | 6 #define VM_PROFILER_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 #include "vm/code_observers.h" | 9 #include "vm/code_observers.h" |
| 10 #include "vm/globals.h" | 10 #include "vm/globals.h" |
| 11 #include "vm/tags.h" | 11 #include "vm/tags.h" |
| 12 #include "vm/thread.h" | |
| 13 #include "vm/thread_interrupter.h" | 12 #include "vm/thread_interrupter.h" |
| 14 | 13 |
| 15 namespace dart { | 14 namespace dart { |
| 16 | 15 |
| 17 // Forward declarations. | 16 // Forward declarations. |
| 18 class JSONArray; | 17 class JSONArray; |
| 19 class JSONStream; | 18 class JSONStream; |
| 20 class ProfilerCodeRegionTable; | 19 class ProfilerCodeRegionTable; |
| 21 class Sample; | 20 class Sample; |
| 22 class SampleBuffer; | 21 class SampleBuffer; |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 intptr_t capacity_; | 339 intptr_t capacity_; |
| 341 uintptr_t cursor_; | 340 uintptr_t cursor_; |
| 342 | 341 |
| 343 DISALLOW_COPY_AND_ASSIGN(SampleBuffer); | 342 DISALLOW_COPY_AND_ASSIGN(SampleBuffer); |
| 344 }; | 343 }; |
| 345 | 344 |
| 346 | 345 |
| 347 } // namespace dart | 346 } // namespace dart |
| 348 | 347 |
| 349 #endif // VM_PROFILER_H_ | 348 #endif // VM_PROFILER_H_ |
| OLD | NEW |