| Index: chromeos/dbus/fake_bluetooth_profile_manager_client.cc
|
| diff --git a/chromeos/dbus/fake_bluetooth_profile_manager_client.cc b/chromeos/dbus/fake_bluetooth_profile_manager_client.cc
|
| index 2839ddd8cbbc27725dd517b920e900a649d5f816..0997c9890b71c9d7f40c94ac03c7b0d68a78d771 100644
|
| --- a/chromeos/dbus/fake_bluetooth_profile_manager_client.cc
|
| +++ b/chromeos/dbus/fake_bluetooth_profile_manager_client.cc
|
| @@ -9,7 +9,6 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| -#include "base/message_loop/message_loop.h"
|
| #include "chromeos/dbus/fake_bluetooth_profile_service_provider.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| @@ -54,7 +53,7 @@
|
| "Profile already registered");
|
| } else {
|
| profile_map_[uuid] = profile_path;
|
| - base::MessageLoop::current()->PostTask(FROM_HERE, callback);
|
| + callback.Run();
|
| }
|
| }
|
| }
|
| @@ -78,7 +77,7 @@
|
| }
|
| }
|
|
|
| - base::MessageLoop::current()->PostTask(FROM_HERE, callback);
|
| + callback.Run();
|
| }
|
| }
|
|
|
|
|