| Index: media/cast/logging/encoding_event_subscriber_unittest.cc
|
| diff --git a/media/cast/logging/encoding_event_subscriber_unittest.cc b/media/cast/logging/encoding_event_subscriber_unittest.cc
|
| index 2c14fbdec202743c04b538573b0fc64b2a07e174..dea39b634334ecfcc9c65c5292fca849b98b94f9 100644
|
| --- a/media/cast/logging/encoding_event_subscriber_unittest.cc
|
| +++ b/media/cast/logging/encoding_event_subscriber_unittest.cc
|
| @@ -11,9 +11,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"
|
|
|
| using media::cast::proto::AggregatedFrameEvent;
|
| @@ -36,7 +36,7 @@ class EncodingEventSubscriberTest : public ::testing::Test {
|
| protected:
|
| EncodingEventSubscriberTest()
|
| : 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_,
|
| @@ -62,7 +62,7 @@ class EncodingEventSubscriberTest : 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_;
|
| scoped_ptr<EncodingEventSubscriber> event_subscriber_;
|
| FrameEventList frame_events_;
|
|
|