Fix build break on canary builder for gizmo board.

buffet/http_transport_fake.cc used VLOG/CHECK macros but did not
explicitly include <base/logging.h>. Somehow it still compiles
locally without it...

BUG=None
TEST=Code still compiles and unit tests run.

Change-Id: Iaf1c75960d62695d1576b4dad807c90d4f6b92fe
Reviewed-on: https://chromium-review.googlesource.com/197695
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
Reviewed-by: Chris Sosa <sosa@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/http_transport_fake.cc b/buffet/http_transport_fake.cc
index 57278b7..84d70cb 100644
--- a/buffet/http_transport_fake.cc
+++ b/buffet/http_transport_fake.cc
@@ -5,6 +5,7 @@
 #include "buffet/http_transport_fake.h"
 
 #include <base/json/json_writer.h>
+#include <base/logging.h>
 
 #include "buffet/http_connection_fake.h"
 #include "buffet/http_request.h"