| 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 import 'dart:_internal'; | 5 import 'dart:_internal'; |
| 6 | 6 |
| 7 patch int _getTraceClock() native "Timeline_getTraceClock"; | 7 patch int _getTraceClock() native "Timeline_getTraceClock"; |
| 8 | 8 |
| 9 patch int _getThreadCpuClock() native "Timeline_getThreadCpuClock"; |
| 10 |
| 9 patch int _getNextAsyncId() native "Timeline_getNextAsyncId"; | 11 patch int _getNextAsyncId() native "Timeline_getNextAsyncId"; |
| 10 | 12 |
| 11 patch int _getIsolateNum() native "Timeline_getIsolateNum"; | 13 patch int _getIsolateNum() native "Timeline_getIsolateNum"; |
| 12 | 14 |
| 13 patch void _reportTaskEvent( | 15 patch void _reportTaskEvent( |
| 14 int start, | 16 int start, |
| 15 int taskId, | 17 int taskId, |
| 16 String phase, | 18 String phase, |
| 17 String category, | 19 String category, |
| 18 String name, | 20 String name, |
| 19 String argumentsAsJson) native "Timeline_reportTaskEvent"; | 21 String argumentsAsJson) native "Timeline_reportTaskEvent"; |
| 20 | 22 |
| 21 patch void _reportCompleteEvent( | 23 patch void _reportCompleteEvent( |
| 22 int start, | 24 int start, |
| 23 int end, | 25 int end, |
| 24 String category, | 26 String category, |
| 25 String name, | 27 String name, |
| 26 String argumentsAsJson) native "Timeline_reportCompleteEvent"; | 28 String argumentsAsJson) native "Timeline_reportCompleteEvent"; |
| 27 | 29 |
| 28 patch void _reportInstantEvent( | 30 patch void _reportInstantEvent( |
| 29 int start, | 31 int start, |
| 30 String category, | 32 String category, |
| 31 String name, | 33 String name, |
| 32 String argumentsAsJson) native "Timeline_reportInstantEvent"; | 34 String argumentsAsJson) native "Timeline_reportInstantEvent"; |
| OLD | NEW |