| Index: runtime/vm/dart.cc
|
| diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
|
| index fcc35014e832486b8cab4d7f14f3597c34842024..b29e964ff2c44c7b2b7a97623d1b8fc5f29d881b 100644
|
| --- a/runtime/vm/dart.cc
|
| +++ b/runtime/vm/dart.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "vm/dart.h"
|
|
|
| +#include "vm/code_observers.h"
|
| #include "vm/dart_api_state.h"
|
| #include "vm/flags.h"
|
| #include "vm/freelist.h"
|
| @@ -61,6 +62,7 @@ const char* Dart::InitOnce(Dart_IsolateCreateCallback create,
|
| PortMap::InitOnce();
|
| FreeListElement::InitOnce();
|
| Api::InitOnce();
|
| + CodeObservers::InitOnce();
|
| // Create the VM isolate and finish the VM initialization.
|
| ASSERT(thread_pool_ == NULL);
|
| thread_pool_ = new ThreadPool();
|
| @@ -191,4 +193,5 @@ void Dart::ShutdownIsolate() {
|
| }
|
| }
|
|
|
| +
|
| } // namespace dart
|
|
|