Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: runtime/vm/dart_api_impl.cc

Issue 463993002: - Separate the thread implementation used in bin/ and vm/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/bigint_operations.h" 10 #include "vm/bigint_operations.h"
11 #include "vm/class_finalizer.h" 11 #include "vm/class_finalizer.h"
12 #include "vm/compiler.h" 12 #include "vm/compiler.h"
13 #include "vm/dart.h" 13 #include "vm/dart.h"
14 #include "vm/dart_api_impl.h" 14 #include "vm/dart_api_impl.h"
15 #include "vm/dart_api_message.h" 15 #include "vm/dart_api_message.h"
16 #include "vm/dart_api_state.h" 16 #include "vm/dart_api_state.h"
17 #include "vm/dart_entry.h" 17 #include "vm/dart_entry.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/message.h" 23 #include "vm/message.h"
23 #include "vm/message_handler.h" 24 #include "vm/message_handler.h"
24 #include "vm/native_entry.h" 25 #include "vm/native_entry.h"
25 #include "vm/object.h" 26 #include "vm/object.h"
26 #include "vm/object_store.h" 27 #include "vm/object_store.h"
27 #include "vm/port.h" 28 #include "vm/port.h"
28 #include "vm/profiler.h" 29 #include "vm/profiler.h"
29 #include "vm/resolver.h" 30 #include "vm/resolver.h"
30 #include "vm/reusable_handles.h" 31 #include "vm/reusable_handles.h"
31 #include "vm/service.h" 32 #include "vm/service.h"
(...skipping 5323 matching lines...) Expand 10 before | Expand all | Expand 10 after
5355 5356
5356 5357
5357 DART_EXPORT void Dart_RegisterRootServiceRequestCallback( 5358 DART_EXPORT void Dart_RegisterRootServiceRequestCallback(
5358 const char* name, 5359 const char* name,
5359 Dart_ServiceRequestCallback callback, 5360 Dart_ServiceRequestCallback callback,
5360 void* user_data) { 5361 void* user_data) {
5361 Service::RegisterRootEmbedderCallback(name, callback, user_data); 5362 Service::RegisterRootEmbedderCallback(name, callback, user_data);
5362 } 5363 }
5363 5364
5364 } // namespace dart 5365 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698