diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 02:25:35 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 02:25:35 +0000 |
commit | 4a404e5356b27578de71b9b41de686768d2ecd42 (patch) | |
tree | b14264adfaaaf505677a2cf1ec7f5dafe636bae5 /chromeos/dbus/bluetooth_property.h | |
parent | 0834e1b153c28dec0ae9e90080ad7a106f1c8c84 (diff) | |
download | chromium_src-4a404e5356b27578de71b9b41de686768d2ecd42.zip chromium_src-4a404e5356b27578de71b9b41de686768d2ecd42.tar.gz chromium_src-4a404e5356b27578de71b9b41de686768d2ecd42.tar.bz2 |
chromeos: Convert D-Bus client classes' callback arguments to const reference
BUG=chromium-os:28578
TEST=build success
Review URL: https://chromiumcodereview.appspot.com/10024054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131697 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/bluetooth_property.h')
-rw-r--r-- | chromeos/dbus/bluetooth_property.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/dbus/bluetooth_property.h b/chromeos/dbus/bluetooth_property.h index ccfbff1..20050c9 100644 --- a/chromeos/dbus/bluetooth_property.h +++ b/chromeos/dbus/bluetooth_property.h @@ -23,7 +23,7 @@ class BluetoothPropertySet : public dbus::PropertySet { public: BluetoothPropertySet(dbus::ObjectProxy* object_proxy, const std::string& interface, - PropertyChangedCallback callback) + const PropertyChangedCallback& callback) : dbus::PropertySet(object_proxy, interface, callback) {} // dbus::PropertySet override. |