Fix unused private field errors

A recent update to libchrome reveals that we were previously suppressing
warnings about unused private fields.

Bug: 28117776
Change-Id: I75f1eabf090744fd883ffd766da4a9c256d7fd6a
Test: This now compiles.
diff --git a/update_manager/real_system_provider.h b/update_manager/real_system_provider.h
index f089a29..d6c2e24 100644
--- a/update_manager/real_system_provider.h
+++ b/update_manager/real_system_provider.h
@@ -74,7 +74,7 @@
 
   chromeos_update_engine::HardwareInterface* const hardware_;
   chromeos_update_engine::BootControlInterface* const boot_control_;
-  chromeos_update_engine::LibCrosProxy* const libcros_proxy_;
+  chromeos_update_engine::LibCrosProxy* const libcros_proxy_ ALLOW_UNUSED_TYPE;
 
   DISALLOW_COPY_AND_ASSIGN(RealSystemProvider);
 };