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

Unified Diff: media/cast/rtcp/mock_rtcp_receiver_feedback.h

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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/receiver/video_decoder_unittest.cc ('k') | media/cast/rtcp/mock_rtcp_receiver_feedback.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/rtcp/mock_rtcp_receiver_feedback.h
diff --git a/media/cast/rtcp/mock_rtcp_receiver_feedback.h b/media/cast/rtcp/mock_rtcp_receiver_feedback.h
deleted file mode 100644
index 56fe1ca6995a828d0a84c6d0755d6776fb139904..0000000000000000000000000000000000000000
--- a/media/cast/rtcp/mock_rtcp_receiver_feedback.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MEDIA_CAST_RTCP_MOCK_RTCP_RECEIVER_FEEDBACK_H_
-#define MEDIA_CAST_RTCP_MOCK_RTCP_RECEIVER_FEEDBACK_H_
-
-#include <vector>
-
-#include "media/cast/rtcp/rtcp_defines.h"
-#include "media/cast/rtcp/rtcp_receiver.h"
-#include "media/cast/transport/cast_transport_defines.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace media {
-namespace cast {
-
-class MockRtcpReceiverFeedback : public RtcpReceiverFeedback {
- public:
- MockRtcpReceiverFeedback();
- virtual ~MockRtcpReceiverFeedback();
-
- MOCK_METHOD1(OnReceivedSenderReport,
- void(const transport::RtcpSenderInfo& remote_sender_info));
-
- MOCK_METHOD1(OnReceiverReferenceTimeReport,
- void(const RtcpReceiverReferenceTimeReport& remote_time_report));
-
- MOCK_METHOD0(OnReceivedSendReportRequest, void());
-
- MOCK_METHOD1(OnReceivedReceiverLog,
- void(const RtcpReceiverLogMessage& receiver_log));
-};
-
-class MockRtcpRttFeedback : public RtcpRttFeedback {
- public:
- MockRtcpRttFeedback();
- virtual ~MockRtcpRttFeedback();
-
- MOCK_METHOD3(OnReceivedDelaySinceLastReport,
- void(uint32 media_ssrc,
- uint32 last_report,
- uint32 delay_since_last_report));
-};
-
-} // namespace cast
-} // namespace media
-
-#endif // MEDIA_CAST_RTCP_MOCK_RTCP_RECEIVER_FEEDBACK_H_
« no previous file with comments | « media/cast/receiver/video_decoder_unittest.cc ('k') | media/cast/rtcp/mock_rtcp_receiver_feedback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698