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

shill 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=`USE='cellular wimax' FEATURES=test emerge-$BOARD platform2`

Change-Id: I9b350c1bd9eff88e2c87de2ef8d607e90049e102
Reviewed-on: https://chromium-review.googlesource.com/216055
Reviewed-by: Paul Stewart <pstew@chromium.org>
Commit-Queue: Ben Chan <benchan@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
diff --git a/tethering.cc b/tethering.cc
index e4b4799..00970c7 100644
--- a/tethering.cc
+++ b/tethering.cc
@@ -4,15 +4,16 @@
 
 #include "shill/tethering.h"
 
+#include <base/macros.h>
+
 using std::set;
 using std::vector;
 
 namespace shill {
 
 // static
-const char Tethering::kAndroidVendorEncapsulatedOptions[] =
-    "ANDROID_METERED";
-const uint8_t Tethering::kAndroidBSSIDPrefix[] = { 0x02, 0x1a, 0x11 };
+const char Tethering::kAndroidVendorEncapsulatedOptions[] = "ANDROID_METERED";
+const uint8_t Tethering::kAndroidBSSIDPrefix[] = {0x02, 0x1a, 0x11};
 const uint32_t Tethering::kIosOui = 0x0017f2;
 const uint8_t Tethering::kLocallyAdministratedMACBit = 0x02;