update_engine: Include base/macros.h instead of base/basictypes.h

update_engine no longer uses the integer types from base/basictypes.h.
It should simply include base/macros.h for the DISALLOW_COPY_AND_ASSIGN
macro instead.

BUG=None
TEST=`FEATURES=test emerge-$BOARD update_engine`

Change-Id: Idf18bc69339b7170122b289342c724c862454062
Reviewed-on: https://chromium-review.googlesource.com/216140
Tested-by: Ben Chan <[email protected]>
Reviewed-by: Alex Deymo <[email protected]>
Commit-Queue: Ben Chan <[email protected]>
diff --git a/certificate_checker.h b/certificate_checker.h
index eb49911..b5f7a15 100644
--- a/certificate_checker.h
+++ b/certificate_checker.h
@@ -5,12 +5,13 @@
 #ifndef UPDATE_ENGINE_CERTIFICATE_CHECKER_H_
 #define UPDATE_ENGINE_CERTIFICATE_CHECKER_H_
 
+#include <curl/curl.h>
+#include <openssl/ssl.h>
+
 #include <string>
 
-#include <base/basictypes.h>
-#include <curl/curl.h>
+#include <base/macros.h>
 #include <gtest/gtest_prod.h>  // for FRIEND_TEST
-#include <openssl/ssl.h>
 
 #include "update_engine/system_state.h"