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/commands/command_definition.h b/buffet/commands/command_definition.h
index 36ba554..f02cf48 100644
--- a/buffet/commands/command_definition.h
+++ b/buffet/commands/command_definition.h
@@ -8,7 +8,7 @@
 #include <memory>
 #include <string>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include "buffet/commands/object_schema.h"
 
diff --git a/buffet/commands/command_dictionary.h b/buffet/commands/command_dictionary.h
index 8356bcb..bd60986 100644
--- a/buffet/commands/command_dictionary.h
+++ b/buffet/commands/command_dictionary.h
@@ -10,7 +10,7 @@
 #include <string>
 #include <vector>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 #include <chromeos/errors/error.h>
 
 namespace base {
diff --git a/buffet/commands/command_instance.h b/buffet/commands/command_instance.h
index 4b71149..f8bde2a 100644
--- a/buffet/commands/command_instance.h
+++ b/buffet/commands/command_instance.h
@@ -9,7 +9,7 @@
 #include <memory>
 #include <string>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 #include <chromeos/errors/error.h>
 
 #include "buffet/commands/prop_values.h"
diff --git a/buffet/commands/command_queue.h b/buffet/commands/command_queue.h
index 4e2706b..6d81b34 100644
--- a/buffet/commands/command_queue.h
+++ b/buffet/commands/command_queue.h
@@ -9,7 +9,7 @@
 #include <memory>
 #include <string>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include "buffet/commands/command_instance.h"
 
diff --git a/buffet/commands/dbus_command_proxy.h b/buffet/commands/dbus_command_proxy.h
index 1221099..eb37d32 100644
--- a/buffet/commands/dbus_command_proxy.h
+++ b/buffet/commands/dbus_command_proxy.h
@@ -8,7 +8,7 @@
 #include <memory>
 #include <string>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 #include <chromeos/dbus/data_serialization.h>
 #include <chromeos/dbus/dbus_object.h>
 
diff --git a/buffet/commands/prop_constraints.h b/buffet/commands/prop_constraints.h
index fabf815..4054f30 100644
--- a/buffet/commands/prop_constraints.h
+++ b/buffet/commands/prop_constraints.h
@@ -9,7 +9,7 @@
 #include <type_traits>
 #include <vector>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 #include <base/values.h>
 #include <chromeos/errors/error.h>
 #include <chromeos/strings/string_utils.h>