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

buffet 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=FEATURES=test emerge-link buffet

Change-Id: Ida2c0c4f152ec3227bbb8822ed037c2df4116de1
Reviewed-on: https://chromium-review.googlesource.com/216470
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
Reviewed-by: Ben Chan <benchan@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/storage_impls.h b/buffet/storage_impls.h
index 156f946..84110c7 100644
--- a/buffet/storage_impls.h
+++ b/buffet/storage_impls.h
@@ -5,8 +5,8 @@
 #ifndef BUFFET_STORAGE_IMPLS_H_
 #define BUFFET_STORAGE_IMPLS_H_
 
-#include <base/basictypes.h>
 #include <base/file_util.h>
+#include <base/macros.h>
 #include <base/values.h>
 
 #include "buffet/storage_interface.h"