summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chromeos/dbus/bluetooth_adapter_client.cc1
-rw-r--r--chromeos/dbus/bluetooth_device_client.cc1
-rw-r--r--chromeos/dbus/bluetooth_input_client.cc1
-rw-r--r--chromeos/dbus/bluetooth_manager_client.h1
-rw-r--r--chromeos/dbus/bluetooth_node_client.cc1
-rw-r--r--chromeos/dbus/bluetooth_property.cc2
-rw-r--r--chromeos/dbus/bluetooth_property.h2
7 files changed, 8 insertions, 1 deletions
diff --git a/chromeos/dbus/bluetooth_adapter_client.cc b/chromeos/dbus/bluetooth_adapter_client.cc
index 7939d24..4173c625 100644
--- a/chromeos/dbus/bluetooth_adapter_client.cc
+++ b/chromeos/dbus/bluetooth_adapter_client.cc
@@ -5,6 +5,7 @@
#include "chromeos/dbus/bluetooth_adapter_client.h"
#include <map>
+#include <utility>
#include "base/bind.h"
#include "base/logging.h"
diff --git a/chromeos/dbus/bluetooth_device_client.cc b/chromeos/dbus/bluetooth_device_client.cc
index a4ce54b4..264de0d 100644
--- a/chromeos/dbus/bluetooth_device_client.cc
+++ b/chromeos/dbus/bluetooth_device_client.cc
@@ -5,6 +5,7 @@
#include "chromeos/dbus/bluetooth_device_client.h"
#include <map>
+#include <utility>
#include "base/bind.h"
#include "base/logging.h"
diff --git a/chromeos/dbus/bluetooth_input_client.cc b/chromeos/dbus/bluetooth_input_client.cc
index 8cdf0a4..9975445 100644
--- a/chromeos/dbus/bluetooth_input_client.cc
+++ b/chromeos/dbus/bluetooth_input_client.cc
@@ -5,6 +5,7 @@
#include "chromeos/dbus/bluetooth_input_client.h"
#include <map>
+#include <utility>
#include "base/bind.h"
#include "base/logging.h"
diff --git a/chromeos/dbus/bluetooth_manager_client.h b/chromeos/dbus/bluetooth_manager_client.h
index 13d7599..117b538 100644
--- a/chromeos/dbus/bluetooth_manager_client.h
+++ b/chromeos/dbus/bluetooth_manager_client.h
@@ -7,6 +7,7 @@
#pragma once
#include <string>
+#include <vector>
#include "base/callback.h"
#include "base/observer_list.h"
diff --git a/chromeos/dbus/bluetooth_node_client.cc b/chromeos/dbus/bluetooth_node_client.cc
index 52959cf..3f143eb0 100644
--- a/chromeos/dbus/bluetooth_node_client.cc
+++ b/chromeos/dbus/bluetooth_node_client.cc
@@ -5,6 +5,7 @@
#include "chromeos/dbus/bluetooth_node_client.h"
#include <map>
+#include <utility>
#include "base/bind.h"
#include "base/logging.h"
diff --git a/chromeos/dbus/bluetooth_property.cc b/chromeos/dbus/bluetooth_property.cc
index 24a1958..d3af078 100644
--- a/chromeos/dbus/bluetooth_property.cc
+++ b/chromeos/dbus/bluetooth_property.cc
@@ -40,4 +40,4 @@ void BluetoothPropertySet::GetAll() {
GetWeakPtr()));
}
-}
+} // namespace chromeos
diff --git a/chromeos/dbus/bluetooth_property.h b/chromeos/dbus/bluetooth_property.h
index 20050c9..010b0f0 100644
--- a/chromeos/dbus/bluetooth_property.h
+++ b/chromeos/dbus/bluetooth_property.h
@@ -6,6 +6,8 @@
#define CHROMEOS_DBUS_BLUETOOTH_PROPERTY_H_
#pragma once
+#include <string>
+
#include "base/compiler_specific.h"
#include "dbus/message.h"
#include "dbus/object_proxy.h"