google_api: Fix build issue

Commit 4cee35e ("Add RootOfTrustCollection and RootOfTrust under Google
service root.") still uses the crow::openbmc_mapper::GetSubTreeType
removed in b9d36b4 ("Consitently use dbus::utility types"), causing
build failure. This patch fixes the build issue by using the
dbus::utility::MapperGetSubTreeResponse instead.

Tested:
Build pass.

Change-Id: Ia2ca965f320ef18f431bfcb6d62c9c44eb935d9d
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/include/google/google_service_root.hpp b/include/google/google_service_root.hpp
index 42d2af9..441ddcf5 100644
--- a/include/google/google_service_root.hpp
+++ b/include/google/google_service_root.hpp
@@ -2,6 +2,7 @@
 
 #include <app.hpp>
 #include <async_resp.hpp>
+#include <dbus_utility.hpp>
 #include <error_messages.hpp>
 #include <nlohmann/json.hpp>
 #include <utils/collection.hpp>
@@ -65,7 +66,7 @@
                          entityHandler{std::forward<ResolvedEntityHandler>(
                              entityHandler)}](
                             const boost::system::error_code ec,
-                            const crow::openbmc_mapper::GetSubTreeType&
+                            const dbus::utility::MapperGetSubTreeResponse&
                                 subtree) {
         if (ec)
         {