| Index: mojo/edk/system/channel_test_base.h
|
| diff --git a/mojo/edk/system/channel_test_base.h b/mojo/edk/system/channel_test_base.h
|
| index 8518cbc3cf9315c723c96143f1b3167787cefcc4..8b1b9326b483fe19822f4c0a1ddd817e2c0e9c9f 100644
|
| --- a/mojo/edk/system/channel_test_base.h
|
| +++ b/mojo/edk/system/channel_test_base.h
|
| @@ -8,7 +8,6 @@
|
| #include <memory>
|
|
|
| #include "base/bind.h"
|
| -#include "base/location.h"
|
| #include "mojo/edk/embedder/simple_platform_support.h"
|
| #include "mojo/edk/system/channel.h"
|
| #include "mojo/edk/system/ref_ptr.h"
|
| @@ -32,11 +31,9 @@ class ChannelTestBase : public testing::Test {
|
| void SetUp() override;
|
|
|
| template <typename Functor, typename... Args>
|
| - void PostMethodToIOThreadAndWait(const tracked_objects::Location& from_here,
|
| - Functor functor,
|
| - const Args&... args) {
|
| + void PostMethodToIOThreadAndWait(Functor functor, const Args&... args) {
|
| io_thread_.PostTaskAndWait(
|
| - from_here, base::Bind(functor, base::Unretained(this), args...));
|
| + base::Bind(functor, base::Unretained(this), args...));
|
| }
|
|
|
| // These should only be called from |io_thread()|:
|
|
|