| 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_PROFILER_SERVICE_H_ | 5 #ifndef RUNTIME_VM_PROFILER_SERVICE_H_ |
| 6 #define VM_PROFILER_SERVICE_H_ | 6 #define RUNTIME_VM_PROFILER_SERVICE_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/growable_array.h" | 11 #include "vm/growable_array.h" |
| 12 #include "vm/object.h" | 12 #include "vm/object.h" |
| 13 #include "vm/tags.h" | 13 #include "vm/tags.h" |
| 14 #include "vm/thread_interrupter.h" | 14 #include "vm/thread_interrupter.h" |
| 15 #include "vm/token_position.h" | 15 #include "vm/token_position.h" |
| 16 | 16 |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 static void PrintJSONImpl(Thread* thread, | 465 static void PrintJSONImpl(Thread* thread, |
| 466 JSONStream* stream, | 466 JSONStream* stream, |
| 467 Profile::TagOrder tag_order, | 467 Profile::TagOrder tag_order, |
| 468 intptr_t extra_tags, | 468 intptr_t extra_tags, |
| 469 SampleFilter* filter, | 469 SampleFilter* filter, |
| 470 bool as_timline); | 470 bool as_timline); |
| 471 }; | 471 }; |
| 472 | 472 |
| 473 } // namespace dart | 473 } // namespace dart |
| 474 | 474 |
| 475 #endif // VM_PROFILER_SERVICE_H_ | 475 #endif // RUNTIME_VM_PROFILER_SERVICE_H_ |
| OLD | NEW |