vintf: VendorManifest -> HalManifest

VendorManifest is an old name and is changed
to HalManifest long ago in relavant documentation.
It merely consist of a list of "HALs" and doesn't
contain any runtime collectible information.

Test: mma
Test: libvintf_test

Change-Id: Iba78128c194a3efc34371b686943266829d8e33c
diff --git a/main.cpp b/main.cpp
index 29d74fc..960ecaa 100644
--- a/main.cpp
+++ b/main.cpp
@@ -18,14 +18,14 @@
 #include <vintf/parse_xml.h>
 #include <vintf/parse_string.h>
 #include <vintf/RuntimeInfo.h>
-#include <vintf/VendorManifest.h>
+#include <vintf/HalManifest.h>
 
 int main(int, char **) {
     using namespace ::android::vintf;
 
-    const VendorManifest *vm = VendorManifest::Get();
+    const HalManifest *vm = HalManifest::Get();
     if (vm != nullptr)
-        std::cout << gVendorManifestConverter(*vm);
+        std::cout << gHalManifestConverter(*vm);
 
     std::cout << std::endl;
     const RuntimeInfo *ki = RuntimeInfo::Get();