| Index: chromeos/dbus/shill_manager_client.cc
|
| diff --git a/chromeos/dbus/shill_manager_client.cc b/chromeos/dbus/shill_manager_client.cc
|
| index caffa301c7f37cc542d5b165084e2f354873575a..ee7a54f456371cc9a2e4406a9204baa3f14378fd 100644
|
| --- a/chromeos/dbus/shill_manager_client.cc
|
| +++ b/chromeos/dbus/shill_manager_client.cc
|
| @@ -362,7 +362,9 @@ class ShillManagerClientStubImpl : public ShillManagerClient,
|
| }
|
|
|
| void PassStubProperties(const DictionaryValueCallback& callback) const {
|
| - callback.Run(DBUS_METHOD_CALL_SUCCESS, stub_properties_);
|
| + scoped_ptr<base::DictionaryValue> properties_copy(
|
| + stub_properties_.DeepCopy());
|
| + callback.Run(DBUS_METHOD_CALL_SUCCESS, properties_copy.Pass());
|
| }
|
|
|
| void NotifyObserversPropertyChanged(const std::string& property) {
|
|
|