Fix build of art/src/oat/runtime/mips/context_mips.cc

Change-Id: I9eb57d8b445f2815cead389b8da24800ecffa7d7
diff --git a/src/oat/runtime/mips/context_mips.cc b/src/oat/runtime/mips/context_mips.cc
index e1c6935..bfb3fc6 100644
--- a/src/oat/runtime/mips/context_mips.cc
+++ b/src/oat/runtime/mips/context_mips.cc
@@ -16,7 +16,9 @@
 
 #include "context_mips.h"
 
+#include "mirror/abstract_method.h"
 #include "mirror/object.h"
+#include "stack.h"
 
 namespace art {
 namespace mips {
@@ -38,7 +40,7 @@
 }
 
 void MipsContext::FillCalleeSaves(const StackVisitor& fr) {
-  AbstractMethod* method = fr.GetMethod();
+  mirror::AbstractMethod* method = fr.GetMethod();
   uint32_t core_spills = method->GetCoreSpillMask();
   uint32_t fp_core_spills = method->GetFpSpillMask();
   size_t spill_count = __builtin_popcount(core_spills);