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

Unified Diff: media/cast/net/rtp/rtp_packetizer_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/net/rtcp/rtcp_utility_unittest.cc ('k') | media/cast/receiver/frame_receiver_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/rtp/rtp_packetizer_unittest.cc
diff --git a/media/cast/net/rtp/rtp_packetizer_unittest.cc b/media/cast/net/rtp/rtp_packetizer_unittest.cc
index 76aa23238172f7ade86cab7e00f7d2124040aaec..ff7675f330aa4ec21bd215653e19a1a5e8bbb59f 100644
--- a/media/cast/net/rtp/rtp_packetizer_unittest.cc
+++ b/media/cast/net/rtp/rtp_packetizer_unittest.cc
@@ -10,10 +10,10 @@
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/test/simple_test_tick_clock.h"
+#include "media/base/fake_single_thread_task_runner.h"
#include "media/cast/net/pacing/paced_sender.h"
#include "media/cast/net/rtp/packet_storage.h"
#include "media/cast/net/rtp/rtp_parser.h"
-#include "media/cast/test/fake_single_thread_task_runner.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace media {
@@ -112,7 +112,7 @@ class TestRtpPacketTransport : public PacketSender {
class RtpPacketizerTest : public ::testing::Test {
protected:
RtpPacketizerTest()
- : task_runner_(new test::FakeSingleThreadTaskRunner(&testing_clock_)) {
+ : task_runner_(new FakeSingleThreadTaskRunner(&testing_clock_)) {
config_.sequence_number = kSeqNum;
config_.ssrc = kSsrc;
config_.payload_type = kPayload;
@@ -140,7 +140,7 @@ class RtpPacketizerTest : public ::testing::Test {
}
base::SimpleTestTickClock testing_clock_;
- scoped_refptr<test::FakeSingleThreadTaskRunner> task_runner_;
+ scoped_refptr<FakeSingleThreadTaskRunner> task_runner_;
EncodedFrame video_frame_;
PacketStorage packet_storage_;
RtpPacketizerConfig config_;
« no previous file with comments | « media/cast/net/rtcp/rtcp_utility_unittest.cc ('k') | media/cast/receiver/frame_receiver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698