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

Unified Diff: runtime/vm/dart.cc

Issue 12221022: Initial prototype of vmstats support, based on Dart VM Stats draft design doc. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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/dart.cc
===================================================================
--- runtime/vm/dart.cc (revision 18152)
+++ runtime/vm/dart.cc (working copy)
@@ -7,6 +7,7 @@
#include "vm/code_observers.h"
#include "vm/dart_api_state.h"
#include "vm/dart_entry.h"
+#include "vm/debugger.h"
#include "vm/flags.h"
#include "vm/freelist.h"
#include "vm/handles.h"
@@ -98,6 +99,7 @@
#if defined(USING_SIMULATOR)
Simulator::InitOnce();
#endif
+ VmStatusService::InitOnce();
siva 2013/02/09 01:00:57 I guess this InitOnce is needed to for the plug-in
Tom Ball 2013/02/14 23:45:16 That's right -- I can lazily do initialization on
// Create the read-only handles area.
ASSERT(predefined_handles_ == NULL);
predefined_handles_ = new ReadOnlyHandles();

Powered by Google App Engine
This is Rietveld 408576698