OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 BIN_LOADER_H_ | 5 #ifndef RUNTIME_BIN_LOADER_H_ |
6 #define BIN_LOADER_H_ | 6 #define RUNTIME_BIN_LOADER_H_ |
7 | 7 |
8 #include "bin/isolate_data.h" | 8 #include "bin/isolate_data.h" |
9 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
10 #include "include/dart_native_api.h" | 10 #include "include/dart_native_api.h" |
11 #include "platform/assert.h" | 11 #include "platform/assert.h" |
12 #include "platform/globals.h" | 12 #include "platform/globals.h" |
13 #include "bin/thread.h" | 13 #include "bin/thread.h" |
14 | 14 |
15 namespace dart { | 15 namespace dart { |
16 namespace bin { | 16 namespace bin { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 static Loader* LoaderForLocked(Dart_Port port); | 139 static Loader* LoaderForLocked(Dart_Port port); |
140 | 140 |
141 // This is the global callback for the native message handlers. | 141 // This is the global callback for the native message handlers. |
142 static void NativeMessageHandler(Dart_Port dest_port_id, | 142 static void NativeMessageHandler(Dart_Port dest_port_id, |
143 Dart_CObject* message); | 143 Dart_CObject* message); |
144 }; | 144 }; |
145 | 145 |
146 } // namespace bin | 146 } // namespace bin |
147 } // namespace dart | 147 } // namespace dart |
148 | 148 |
149 #endif // BIN_LOADER_H_ | 149 #endif // RUNTIME_BIN_LOADER_H_ |
OLD | NEW |