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/rsSampler.h b/rsSampler.h
index 3f5855f..2fdf707 100644
--- a/rsSampler.h
+++ b/rsSampler.h
@@ -96,9 +96,12 @@
         }
     }
     // Cache of all existing raster programs.
-    std::vector<Sampler *> mAllSamplers;
+    Vector<Sampler *> mAllSamplers;
 };
 
 }
 }
 #endif //ANDROID_RS_SAMPLER_H
+
+
+