Index: runtime/bin/vmservice_impl.h |
diff --git a/runtime/bin/vmservice_impl.h b/runtime/bin/vmservice_impl.h |
index 75457463c391f2349e803126542f28f3a93cc4ff..8c364d9518aa277cceed1d68bc6970b537828ba5 100644 |
--- a/runtime/bin/vmservice_impl.h |
+++ b/runtime/bin/vmservice_impl.h |
@@ -14,13 +14,12 @@ namespace bin { |
class VmService { |
public: |
- // Returns false if service could not be started. |
- static bool Start(const char *server_ip, intptr_t server_port); |
// Error message if startup failed. |
static const char* GetErrorMessage(); |
+ static bool SetupIsolate(const char* server_ip, intptr_t server_port); |
+ |
private: |
- static bool _Start(const char *server_ip, intptr_t server_port); |
static Dart_Handle GetSource(const char* name); |
static Dart_Handle LoadScript(const char* name); |
static Dart_Handle LoadSource(Dart_Handle library, const char* name); |
@@ -32,7 +31,6 @@ class VmService { |
friend void TriggerResourceLoad(Dart_NativeArguments args); |
- static void ThreadMain(uword parameters); |
static const char* error_msg_; |
DISALLOW_ALLOCATION(); |
DISALLOW_IMPLICIT_CONSTRUCTORS(VmService); |