First pass of compiler wrapping class

Change-Id: I343625310f69cc4de315af91b9cc72bb4da8f59b
diff --git a/src/dex_cache.cc b/src/dex_cache.cc
index 3bd04eb..a012c71 100644
--- a/src/dex_cache.cc
+++ b/src/dex_cache.cc
@@ -1,5 +1,6 @@
 // Copyright 2011 Google Inc. All Rights Reserved.
 
+#include "class_linker.h"
 #include "dex_cache.h"
 #include "heap.h"
 #include "globals.h"
@@ -10,12 +11,12 @@
 
 void DexCache::Init(String* location,
                     ObjectArray<String>* strings,
-                    ObjectArray<Class>* classes,
+                    ObjectArray<Class>* types,
                     ObjectArray<Method>* methods,
                     ObjectArray<Field>* fields) {
   Set(kLocation, location);
   Set(kStrings,  strings);
-  Set(kClasses,  classes);
+  Set(kTypes,    types);
   Set(kMethods,  methods);
   Set(kFields,   fields);
 }