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

Unified Diff: runtime/vm/service_isolate.cc

Issue 1162033005: Fix http://dartbug.com/23578: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update to ToT. Created 5 years, 6 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
Index: runtime/vm/service_isolate.cc
diff --git a/runtime/vm/service_isolate.cc b/runtime/vm/service_isolate.cc
index 9ff38ef9cc19714c08278a4c450ce213aee49e17..89d93b6321b6b79a8b9b29a9a490ee19d57566ec 100644
--- a/runtime/vm/service_isolate.cc
+++ b/runtime/vm/service_isolate.cc
@@ -625,10 +625,15 @@ class RunServiceTask : public ThreadPool::Task {
return;
}
+ Isolate::Flags default_flags;
+ Dart_IsolateFlags api_flags;
+ default_flags.CopyTo(&api_flags);
+
isolate =
reinterpret_cast<Isolate*>(create_callback(ServiceIsolate::kName,
NULL,
NULL,
+ &api_flags,
NULL,
&error));
if (isolate == NULL) {
« runtime/vm/isolate.cc ('K') | « runtime/vm/service.cc ('k') | runtime/vm/thread_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698