Replace libchrome macros.h with android base ones
Replaces <base/macros.h> with <android-base/macros.h>
This change is very mechanical, no change in program behavior.
Test: build
Bug: 360917504
Change-Id: I770a7dab047672dad9d764985bcc5d8ee3f39544
diff --git a/common/http_fetcher.h b/common/http_fetcher.h
index f32c01d..58ee99e 100644
--- a/common/http_fetcher.h
+++ b/common/http_fetcher.h
@@ -24,7 +24,7 @@
#include <base/callback.h>
#include <base/logging.h>
-#include <base/macros.h>
+#include <android-base/macros.h>
#include <brillo/message_loops/message_loop.h>
#include <brillo/secure_blob.h>
@@ -47,7 +47,7 @@
// |proxy_resolver| is the resolver that will be consulted for proxy
// settings. It may be null, in which case direct connections will
// be used. Does not take ownership of the resolver.
- explicit HttpFetcher()
+ HttpFetcher()
: post_data_set_(false),
http_response_code_(0),
delegate_(nullptr),