Implement a new resetStatus() method in Android interface.

When an alredy applied update is deleted from the server (normally
because is was detected to be a bad update), we need to go back to
the idle state and remove the update to prevent it from breaking
more devices.

This patch allows the application side to reset the applied update
back to idle.

Bug: 27081760
TEST=Deployed on a non-Brillo device, sent resetStatus.

(cherry picked from commit 3b678db2e7fd4baa38c6d6b8bb8334f7d88b8682)

Change-Id: I654c904f4b4f606445a70ec95a660491391a779f
diff --git a/binder_service_android.h b/binder_service_android.h
index 0a82b82..47e76a7 100644
--- a/binder_service_android.h
+++ b/binder_service_android.h
@@ -67,6 +67,7 @@
   android::binder::Status suspend() override;
   android::binder::Status resume() override;
   android::binder::Status cancel() override;
+  android::binder::Status resetStatus() override;
 
  private:
   // Remove the passed |callback| from the list of registered callbacks. Called