| 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 #include "include/dart_api.h" | 5 #include "include/dart_api.h" |
| 6 #include "include/dart_mirrors_api.h" | 6 #include "include/dart_mirrors_api.h" |
| 7 #include "include/dart_native_api.h" | 7 #include "include/dart_native_api.h" |
| 8 | 8 |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "vm/class_finalizer.h" | 10 #include "vm/class_finalizer.h" |
| 11 #include "vm/compiler.h" | 11 #include "vm/compiler.h" |
| 12 #include "vm/dart.h" | 12 #include "vm/dart.h" |
| 13 #include "vm/dart_api_impl.h" | 13 #include "vm/dart_api_impl.h" |
| 14 #include "vm/dart_api_message.h" | 14 #include "vm/dart_api_message.h" |
| 15 #include "vm/dart_api_state.h" | 15 #include "vm/dart_api_state.h" |
| 16 #include "vm/dart_entry.h" | 16 #include "vm/dart_entry.h" |
| 17 #include "vm/debugger.h" | 17 #include "vm/debugger.h" |
| 18 #include "vm/debuginfo.h" | 18 #include "vm/debuginfo.h" |
| 19 #include "vm/exceptions.h" | 19 #include "vm/exceptions.h" |
| 20 #include "vm/flags.h" | 20 #include "vm/flags.h" |
| 21 #include "vm/growable_array.h" | 21 #include "vm/growable_array.h" |
| 22 #include "vm/lockers.h" | 22 #include "vm/lockers.h" |
| 23 #include "vm/message.h" | 23 #include "vm/message.h" |
| 24 #include "vm/message_handler.h" | 24 #include "vm/message_handler.h" |
| 25 #include "vm/native_entry.h" | 25 #include "vm/native_entry.h" |
| 26 #include "vm/object.h" | 26 #include "vm/object.h" |
| 27 #include "vm/object_store.h" | 27 #include "vm/object_store.h" |
| 28 #include "vm/os_thread.h" |
| 28 #include "vm/port.h" | 29 #include "vm/port.h" |
| 29 #include "vm/profiler.h" | 30 #include "vm/profiler.h" |
| 30 #include "vm/resolver.h" | 31 #include "vm/resolver.h" |
| 31 #include "vm/reusable_handles.h" | 32 #include "vm/reusable_handles.h" |
| 32 #include "vm/service.h" | 33 #include "vm/service.h" |
| 33 #include "vm/stack_frame.h" | 34 #include "vm/stack_frame.h" |
| 34 #include "vm/symbols.h" | 35 #include "vm/symbols.h" |
| 35 #include "vm/tags.h" | 36 #include "vm/tags.h" |
| 36 #include "vm/timer.h" | 37 #include "vm/timer.h" |
| 37 #include "vm/unicode.h" | 38 #include "vm/unicode.h" |
| (...skipping 5386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5424 | 5425 |
| 5425 | 5426 |
| 5426 DART_EXPORT void Dart_RegisterRootServiceRequestCallback( | 5427 DART_EXPORT void Dart_RegisterRootServiceRequestCallback( |
| 5427 const char* name, | 5428 const char* name, |
| 5428 Dart_ServiceRequestCallback callback, | 5429 Dart_ServiceRequestCallback callback, |
| 5429 void* user_data) { | 5430 void* user_data) { |
| 5430 Service::RegisterRootEmbedderCallback(name, callback, user_data); | 5431 Service::RegisterRootEmbedderCallback(name, callback, user_data); |
| 5431 } | 5432 } |
| 5432 | 5433 |
| 5433 } // namespace dart | 5434 } // namespace dart |
| OLD | NEW |