diff options
author | bryeung@chromium.org <bryeung@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-22 15:27:49 +0000 |
---|---|---|
committer | bryeung@chromium.org <bryeung@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-22 15:27:49 +0000 |
commit | 68414fc0691df4ed8a89387cfe511c8750065a18 (patch) | |
tree | d08ce1d10db9a2def73708b3581684cd76c7e5c7 /chromeos | |
parent | 94e2bbe39fe667dd072755c0310fe42f73e0bb66 (diff) | |
download | chromium_src-68414fc0691df4ed8a89387cfe511c8750065a18.zip chromium_src-68414fc0691df4ed8a89387cfe511c8750065a18.tar.gz chromium_src-68414fc0691df4ed8a89387cfe511c8750065a18.tar.bz2 |
Fix lint errors for chromeos/dbus/bluetooth*
TEST=compiles
BUG=none
Review URL: https://chromiumcodereview.appspot.com/10640008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143596 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos')
-rw-r--r-- | chromeos/dbus/bluetooth_adapter_client.cc | 1 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_device_client.cc | 1 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_input_client.cc | 1 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_manager_client.h | 1 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_node_client.cc | 1 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_property.cc | 2 | ||||
-rw-r--r-- | chromeos/dbus/bluetooth_property.h | 2 |
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" |