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

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

Issue 1173333007: Refactor some Timeline interfaces to be simpler and support streaming (Closed) Base URL: git@github.com:dart-lang/sdk.git@timeline2
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/timeline.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 "vm/service_isolate.h" 5 #include "vm/service_isolate.h"
6 6
7 #include "vm/compiler.h" 7 #include "vm/compiler.h"
8 #include "vm/dart_api_impl.h" 8 #include "vm/dart_api_impl.h"
9 #include "vm/dart_entry.h" 9 #include "vm/dart_entry.h"
10 #include "vm/isolate.h" 10 #include "vm/isolate.h"
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 NULL, 635 NULL,
636 &api_flags, 636 &api_flags,
637 NULL, 637 NULL,
638 &error)); 638 &error));
639 if (isolate == NULL) { 639 if (isolate == NULL) {
640 OS::PrintErr("vm-service: Isolate creation error: %s\n", error); 640 OS::PrintErr("vm-service: Isolate creation error: %s\n", error);
641 ServiceIsolate::FinishedInitializing(); 641 ServiceIsolate::FinishedInitializing();
642 return; 642 return;
643 } 643 }
644 644
645 isolate->RemoveTimelineEventBuffer(); 645 isolate->RemoveTimelineEventRecorder();
646 646
647 Thread::ExitIsolate(); 647 Thread::ExitIsolate();
648 648
649 ServiceIsolate::ConstructExitMessageAndCache(isolate); 649 ServiceIsolate::ConstructExitMessageAndCache(isolate);
650 650
651 RunMain(isolate); 651 RunMain(isolate);
652 652
653 ServiceIsolate::FinishedInitializing(); 653 ServiceIsolate::FinishedInitializing();
654 654
655 isolate->message_handler()->Run(Dart::thread_pool(), 655 isolate->message_handler()->Run(Dart::thread_pool(),
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 return result; 806 return result;
807 } 807 }
808 Dart_Handle source = GetSource(url_string); 808 Dart_Handle source = GetSource(url_string);
809 if (Dart_IsError(source)) { 809 if (Dart_IsError(source)) {
810 return source; 810 return source;
811 } 811 }
812 return Dart_LoadSource(library, url, source, 0, 0); 812 return Dart_LoadSource(library, url, source, 0, 0);
813 } 813 }
814 814
815 } // namespace dart 815 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/timeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698