Revert "Replaced android::Vector with std::vector."

b/19148482

This reverts commit 93d6bc872b7d9fba63abfa7513d56b38d9c3d371.

I also made some changes to Make it work with HEAD.

Change-Id: I5e516976ec1d85ffe1cf388c01795348a9441982
diff --git a/rsFileA3D.h b/rsFileA3D.h
index 0c8b3d6..8bf36b9 100644
--- a/rsFileA3D.h
+++ b/rsFileA3D.h
@@ -88,13 +88,15 @@
     Asset *mAsset;
 
     OStream *mWriteStream;
-    std::vector<A3DIndexEntry*> mWriteIndex;
+    Vector<A3DIndexEntry*> mWriteIndex;
 
     IStream *mReadStream;
-    std::vector<A3DIndexEntry*> mIndex;
+    Vector<A3DIndexEntry*> mIndex;
 };
 
 
 }
 }
 #endif //ANDROID_RS_FILE_A3D_H
+
+