Allow including file_descriptor.h in fs_mgr.

Note that file_descriptor.h includes base/logging.h, which conflicts
with android-base/logging.h. Since it doesn't actually need this header,
change it to base/macros.h which is safe.

Bug: 168554689
Test: builds
Change-Id: I1e903cec857c50f988b537d87c1f254338da686c
diff --git a/payload_consumer/file_descriptor.h b/payload_consumer/file_descriptor.h
index 55f76c6..fb07ff0 100644
--- a/payload_consumer/file_descriptor.h
+++ b/payload_consumer/file_descriptor.h
@@ -21,7 +21,7 @@
 #include <sys/types.h>
 #include <memory>
 
-#include <base/logging.h>
+#include <base/macros.h>
 
 // Abstraction for managing opening, reading, writing and closing of file
 // descriptors. This includes an abstract class and one standard implementation