Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1051)

Unified Diff: media/cast/sender/congestion_control_unittest.cc

Issue 1829163002: Lazily prune the multibuffer block cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no export Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/sender/audio_sender_unittest.cc ('k') | media/cast/sender/video_encoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/congestion_control_unittest.cc
diff --git a/media/cast/sender/congestion_control_unittest.cc b/media/cast/sender/congestion_control_unittest.cc
index a692909ea1de7867dad177ece442f0aa91adbb42..e1ed9e92f0efcafb4cd6432d9127ebd3057899ef 100644
--- a/media/cast/sender/congestion_control_unittest.cc
+++ b/media/cast/sender/congestion_control_unittest.cc
@@ -10,8 +10,8 @@
#include "base/location.h"
#include "base/macros.h"
#include "base/test/simple_test_tick_clock.h"
+#include "media/base/fake_single_thread_task_runner.h"
#include "media/cast/sender/congestion_control.h"
-#include "media/cast/test/fake_single_thread_task_runner.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
@@ -27,7 +27,7 @@ static const double kTargetEmptyBufferFraction = 0.9;
class CongestionControlTest : public ::testing::Test {
protected:
CongestionControlTest()
- : task_runner_(new test::FakeSingleThreadTaskRunner(&testing_clock_)) {
+ : task_runner_(new FakeSingleThreadTaskRunner(&testing_clock_)) {
testing_clock_.Advance(
base::TimeDelta::FromMilliseconds(kStartMillisecond));
congestion_control_.reset(NewAdaptiveCongestionControl(
@@ -64,7 +64,7 @@ class CongestionControlTest : public ::testing::Test {
base::SimpleTestTickClock testing_clock_;
scoped_ptr<CongestionControl> congestion_control_;
- scoped_refptr<test::FakeSingleThreadTaskRunner> task_runner_;
+ scoped_refptr<FakeSingleThreadTaskRunner> task_runner_;
uint32_t frame_id_;
DISALLOW_COPY_AND_ASSIGN(CongestionControlTest);
« no previous file with comments | « media/cast/sender/audio_sender_unittest.cc ('k') | media/cast/sender/video_encoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698