| Index: chromeos/dbus/shill_profile_client.cc
|
| diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc
|
| index 6b2544c4b7005a8e5c41ee598e78fe1b1c59777d..3311a8dcb33d9e5e3146e47aaf6d0991a5196e4a 100644
|
| --- a/chromeos/dbus/shill_profile_client.cc
|
| +++ b/chromeos/dbus/shill_profile_client.cc
|
| @@ -168,8 +168,8 @@ class ShillProfileClientStubImpl : public ShillProfileClient {
|
| private:
|
| void PassEmptyDictionaryValue(
|
| const DictionaryValueCallbackWithoutStatus& callback) const {
|
| - base::DictionaryValue dictionary;
|
| - callback.Run(dictionary);
|
| + scoped_ptr<base::DictionaryValue> empty(new base::DictionaryValue);
|
| + callback.Run(empty.Pass());
|
| }
|
|
|
| // Note: This should remain the last member so it'll be destroyed and
|
|
|