Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64ec31f9 authored by Abhishek Pandit-Subedi's avatar Abhishek Pandit-Subedi Committed by Abhishek Pandit-Subedi
Browse files

Replace base::MessageLoopCurrent* by base::Current*Thread

Make changes necessary for recent uprev of libchrome to r822064.

Bug: 187086497
Tag: #floss
Test: atest --host bluetooth_test_gd
Change-Id: I63f954c1ce5e0bf455e1da1e258d4a8b88fcfc9d
parent 40013ba0
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -21,7 +21,11 @@
 * the old libchrome version so use the basic messageloop where that's required.
 * Elsewhere, use the SingleThreadTaskExecutor instead.
 */
#if BASE_VER >= 822064
#include <base/task/current_thread.h>
#else
#include <base/message_loop/message_loop_current.h>
#endif
#include <base/message_loop/message_pump.h>
#include <base/task/single_thread_task_executor.h>
#include <base/test/task_environment.h>