hidl::{Parcel,Binder & friends} => hardware::\1
diff --git a/VectorType.cpp b/VectorType.cpp
index 6c96a64..d1cec2d 100644
--- a/VectorType.cpp
+++ b/VectorType.cpp
@@ -12,7 +12,7 @@
 
 std::string VectorType::getCppType(StorageMode mode, std::string *extra) const {
     const std::string base =
-        "::android::hidl::hidl_vec<"
+        "::android::hardware::hidl_vec<"
         + mElementType->getCppType(extra)
         + ">";
 
@@ -49,7 +49,7 @@
 
     if (isReader) {
         out << name
-            << " = (const ::android::hidl::hidl_vec<"
+            << " = (const ::android::hardware::hidl_vec<"
             << baseType
             << "> *)"
             << parcelObjDeref