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

Unified Diff: media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h

Issue 143263024: Cast: Refactoring RtpReceiver to Clang format (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Responding to review Created 6 years, 11 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/rtp_receiver/receiver_stats_unittest.cc ('k') | media/cast/rtp_receiver/rtp_parser/rtp_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h
diff --git a/media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h b/media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h
index b6647a835be75412ea5bbfb01cbd29a521d91f4f..284c2f10aaded947bb4cf4cc5a40a58c43a9431a 100644
--- a/media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h
+++ b/media/cast/rtp_receiver/rtp_parser/include/mock/mock_rtp_feedback.h
@@ -14,19 +14,17 @@ namespace cast {
class MockRtpFeedback : public RtpFeedback {
public:
MOCK_METHOD4(OnInitializeDecoder,
- int32(const int8 payloadType,
- const int frequency,
- const uint8 channels,
- const uint32 rate));
+ int32(const int8 payloadType,
+ const int frequency,
+ const uint8 channels,
+ const uint32 rate));
- MOCK_METHOD1(OnPacketTimeout,
- void(const int32 id));
+ MOCK_METHOD1(OnPacketTimeout, void(const int32 id));
MOCK_METHOD2(OnReceivedPacket,
void(const int32 id, const RtpRtcpPacketType packet_type));
MOCK_METHOD2(OnPeriodicDeadOrAlive,
void(const int32 id, const RTPAliveType alive));
- MOCK_METHOD2(OnIncomingSSRCChanged,
- void(const int32 id, const uint32 ssrc));
+ MOCK_METHOD2(OnIncomingSSRCChanged, void(const int32 id, const uint32 ssrc));
MOCK_METHOD3(OnIncomingCSRCChanged,
void(const int32 id, const uint32 csrc, const bool added));
};
« no previous file with comments | « media/cast/rtp_receiver/receiver_stats_unittest.cc ('k') | media/cast/rtp_receiver/rtp_parser/rtp_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698