| Index: runtime/vm/dart.cc
|
| ===================================================================
|
| --- runtime/vm/dart.cc (revision 1859)
|
| +++ runtime/vm/dart.cc (working copy)
|
| @@ -23,14 +23,12 @@
|
| Isolate* Dart::vm_isolate_ = NULL;
|
| DebugInfo* Dart::pprof_symbol_generator_ = NULL;
|
|
|
| -bool Dart::InitOnce(int argc, const char** argv,
|
| - Dart_IsolateInitCallback callback) {
|
| +bool Dart::InitOnce(Dart_IsolateInitCallback callback) {
|
| // TODO(iposva): Fix race condition here.
|
| if (vm_isolate_ != NULL) {
|
| return false;
|
| }
|
| OS::InitOnce();
|
| - Flags::ProcessCommandLineFlags(argc, argv);
|
| VirtualMemory::InitOnce();
|
| Isolate::InitOnce();
|
| // Create the VM isolate and finish the VM initialization.
|
|
|