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

Commit 74cb2872 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 0c4c35e4 64ec31f9
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>