| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 INCLUDE_DART_TOOLS_API_H_ | 5 #ifndef RUNTIME_INCLUDE_DART_TOOLS_API_H_ |
| 6 #define INCLUDE_DART_TOOLS_API_H_ | 6 #define RUNTIME_INCLUDE_DART_TOOLS_API_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 | 9 |
| 10 /** \mainpage Dart Tools Embedding API Reference | 10 /** \mainpage Dart Tools Embedding API Reference |
| 11 * | 11 * |
| 12 * This reference describes the Dart embedding API for tools. Tools include | 12 * This reference describes the Dart embedding API for tools. Tools include |
| 13 * a debugger, service protocol, and timeline. | 13 * a debugger, service protocol, and timeline. |
| 14 * | 14 * |
| 15 * NOTE: The APIs described in this file are unstable and subject to change. | 15 * NOTE: The APIs described in this file are unstable and subject to change. |
| 16 * | 16 * |
| (...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 * | 1080 * |
| 1081 * \param start_recording See Dart_EmbedderTimelineStartRecording. | 1081 * \param start_recording See Dart_EmbedderTimelineStartRecording. |
| 1082 * \param stop_recording See Dart_EmbedderTimelineStopRecording. | 1082 * \param stop_recording See Dart_EmbedderTimelineStopRecording. |
| 1083 * | 1083 * |
| 1084 * NOTE: To avoid races, this should be called before Dart_Initialize. | 1084 * NOTE: To avoid races, this should be called before Dart_Initialize. |
| 1085 */ | 1085 */ |
| 1086 DART_EXPORT void Dart_SetEmbedderTimelineCallbacks( | 1086 DART_EXPORT void Dart_SetEmbedderTimelineCallbacks( |
| 1087 Dart_EmbedderTimelineStartRecording start_recording, | 1087 Dart_EmbedderTimelineStartRecording start_recording, |
| 1088 Dart_EmbedderTimelineStopRecording stop_recording); | 1088 Dart_EmbedderTimelineStopRecording stop_recording); |
| 1089 | 1089 |
| 1090 #endif // INCLUDE_DART_TOOLS_API_H_ | 1090 #endif // RUNTIME_INCLUDE_DART_TOOLS_API_H_ |
| OLD | NEW |