| Index: media/cast/logging/simple_event_subscriber_unittest.cc
|
| diff --git a/media/cast/logging/simple_event_subscriber_unittest.cc b/media/cast/logging/simple_event_subscriber_unittest.cc
|
| index d0b91cd964b8df3675d1edee3124e7903a450681..fc7eaa2133812b6a37b63105c7d6cbf6a96087bb 100644
|
| --- a/media/cast/logging/simple_event_subscriber_unittest.cc
|
| +++ b/media/cast/logging/simple_event_subscriber_unittest.cc
|
| @@ -10,9 +10,9 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/test/simple_test_tick_clock.h"
|
| #include "base/time/tick_clock.h"
|
| +#include "media/base/fake_single_thread_task_runner.h"
|
| #include "media/cast/cast_environment.h"
|
| #include "media/cast/logging/logging_defines.h"
|
| -#include "media/cast/test/fake_single_thread_task_runner.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace media {
|
| @@ -22,7 +22,7 @@ class SimpleEventSubscriberTest : public ::testing::Test {
|
| protected:
|
| SimpleEventSubscriberTest()
|
| : testing_clock_(new base::SimpleTestTickClock()),
|
| - task_runner_(new test::FakeSingleThreadTaskRunner(testing_clock_)),
|
| + task_runner_(new FakeSingleThreadTaskRunner(testing_clock_)),
|
| cast_environment_(
|
| new CastEnvironment(scoped_ptr<base::TickClock>(testing_clock_),
|
| task_runner_,
|
| @@ -36,7 +36,7 @@ class SimpleEventSubscriberTest : public ::testing::Test {
|
| }
|
|
|
| base::SimpleTestTickClock* testing_clock_; // Owned by CastEnvironment.
|
| - scoped_refptr<test::FakeSingleThreadTaskRunner> task_runner_;
|
| + scoped_refptr<FakeSingleThreadTaskRunner> task_runner_;
|
| scoped_refptr<CastEnvironment> cast_environment_;
|
| SimpleEventSubscriber event_subscriber_;
|
| };
|
|
|