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

Unified Diff: runtime/vm/service_isolate.h

Issue 1387043002: Make dart:_vmservice a proper builtin library (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/service/vmservice.dart ('k') | runtime/vm/service_isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service_isolate.h
diff --git a/runtime/vm/service_isolate.h b/runtime/vm/service_isolate.h
index 86433c9a9cb220089e75b3f0b01590578ef400ab..bb7e029008782b5996b8c27a8f5482d1c82ec815 100644
--- a/runtime/vm/service_isolate.h
+++ b/runtime/vm/service_isolate.h
@@ -42,14 +42,14 @@ class ServiceIsolate : public AllStatic {
static void ConstructExitMessageAndCache(Isolate* isolate);
static void FinishedExiting();
static void FinishedInitializing();
- static void MaybeInjectVMServiceLibrary(Isolate* isolate);
+ static void MaybeMakeServiceIsolate(Isolate* isolate);
static Dart_IsolateCreateCallback create_callback() {
return create_callback_;
}
- static Dart_Handle GetSource(const char* name);
- static Dart_Handle LibraryTagHandler(Dart_LibraryTag tag, Dart_Handle library,
- Dart_Handle url);
+ static Dart_NativeFunction NativeResolver(Dart_Handle name,
+ int num_arguments,
+ bool* auto_setup_scope);
static Dart_IsolateCreateCallback create_callback_;
static uint8_t* exit_message_;
@@ -65,6 +65,7 @@ class ServiceIsolate : public AllStatic {
friend class Dart;
friend class RunServiceTask;
friend class ServiceIsolateNatives;
+ friend class Bootstrap;
};
} // namespace dart
« no previous file with comments | « runtime/vm/service/vmservice.dart ('k') | runtime/vm/service_isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698