Add the two ReferenceTables.

Change-Id: Ie9200e6246dc07d867de0a70de52c1b2dc034f5b
diff --git a/src/runtime.cc b/src/runtime.cc
index 2ad3589..b167280c 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -268,7 +268,8 @@
 
   class_linker_ = ClassLinker::Create(parsed_options->boot_class_path_);
 
-  java_vm_.reset(CreateJavaVM(this));
+  java_vm_.reset(reinterpret_cast<JavaVM*>(new JavaVMExt(this)));
+
   return true;
 }