| Index: chromeos/dbus/shill_profile_client_stub.cc
|
| diff --git a/chromeos/dbus/shill_profile_client_stub.cc b/chromeos/dbus/shill_profile_client_stub.cc
|
| index 082469ae45b3ccc62f51a1f6c45c5bf615d9a4c3..e023237a11580165275e46f6598ce43749c51e1b 100644
|
| --- a/chromeos/dbus/shill_profile_client_stub.cc
|
| +++ b/chromeos/dbus/shill_profile_client_stub.cc
|
| @@ -74,7 +74,7 @@ void ShillProfileClientStub::GetProperties(
|
| entry_paths->AppendString(it.key());
|
| }
|
|
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| base::Bind(&PassDictionary, callback, base::Owned(properties.release())));
|
| }
|
| @@ -95,7 +95,7 @@ void ShillProfileClientStub::GetEntry(
|
| return;
|
| }
|
|
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| base::Bind(&PassDictionary, callback, base::Owned(entry->DeepCopy())));
|
| }
|
| @@ -113,7 +113,7 @@ void ShillProfileClientStub::DeleteEntry(const dbus::ObjectPath& profile_path,
|
| return;
|
| }
|
|
|
| - MessageLoop::current()->PostTask(FROM_HERE, callback);
|
| + base::MessageLoop::current()->PostTask(FROM_HERE, callback);
|
| }
|
|
|
| ShillProfileClient::TestInterface* ShillProfileClientStub::GetTestInterface() {
|
|
|