Initialize the CertificateChecker on Android.

The CertificateChecker singleton is a class that keeps track of the
SSL certificates seen for the download and updatecheck servers. In
Android devices, we use the download server only, but the class was not
initialized leading to CURLE_FAILED_INIT failure and a log message,
except that DLOG messages are not shown on "release" builds and
therefore the message was lost.

This patch initializes the certificate checker class, allowing
update_engine to download HTTPS files.

Bug: 29585834
TEST=Tested on a device that update_engine can download a payload
directly from an https:// URL.

Change-Id: I70ec15aea620802bb52ca8405b9444d5b88d0288
diff --git a/daemon_state_android.h b/daemon_state_android.h
index 5db3ef0..69180bc 100644
--- a/daemon_state_android.h
+++ b/daemon_state_android.h
@@ -64,6 +64,11 @@
 
   // The main class handling the updates.
   std::unique_ptr<UpdateAttempterAndroid> update_attempter_;
+
+  // OpenSSLWrapper and CertificateChecker used for checking changes in SSL
+  // certificates.
+  OpenSSLWrapper openssl_wrapper_;
+  std::unique_ptr<CertificateChecker> certificate_checker_;
 };
 
 }  // namespace chromeos_update_engine