update_engine: Leverage install indication in StatusResult protobuf

Update engine will provide this install indication for signal listeners
(specifically dlcservice) and status requesters to indicate whether
update engine is in the process of installing or updating. With this,
dlcservice will can be altered to not probe update engine for status
during a DLC uninstall.

The update engine client is also updated when getting the status from
update engine by using KeyValueStore printouts now.

Old output:

  [0725/202915.815630:INFO:update_engine_client.cc(501)] Querying Update
  Engine status...
  LAST_CHECKED_TIME=1564102396
  PROGRESS=1.000000
  CURRENT_OP=UPDATE_STATUS_IDLE
  NEW_VERSION=12354.0.2019_07_19_1136
  NEW_SIZE=792

New output:

  [0726/173804.558077:INFO:update_engine_client.cc(490)] Querying Update
  Engine status...
  CURRENT_OPERATION=UPDATE_STATUS_IDLE
  IS_INSTALL=false
  LAST_CHECKED_TIME=1564187860
  NEW_SIZE=792
  NEW_VERSION=12369.0.2019_07_26_0904
  PROGRESS=1.0

BUG=chromium:871340
TEST=FEATURES="test" emerge-$BOARD update_engine update_engine-client system_api
TEST=/usr/bin/update_engine_client --status

Cq-Depend: chromium:1717661
Change-Id: Iaacea27e0fc0711200ec81fdebb7fef45f94af43
diff --git a/update_status_utils.h b/update_status_utils.h
index e3b8b43..1e3fdde 100644
--- a/update_status_utils.h
+++ b/update_status_utils.h
@@ -25,6 +25,9 @@
 
 const char* UpdateStatusToString(const update_engine::UpdateStatus& status);
 
+std::string UpdateEngineStatusToString(
+    const update_engine::UpdateEngineStatus& status);
+
 }  // namespace chromeos_update_engine
 
 #endif  // UPDATE_ENGINE_UPDATE_STATUS_UTILS_H_