aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/mock_compound_rtcp_parser_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/mock_compound_rtcp_parser_client.h')
-rw-r--r--cast/streaming/mock_compound_rtcp_parser_client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cast/streaming/mock_compound_rtcp_parser_client.h b/cast/streaming/mock_compound_rtcp_parser_client.h
index 4411e98a..93d93f67 100644
--- a/cast/streaming/mock_compound_rtcp_parser_client.h
+++ b/cast/streaming/mock_compound_rtcp_parser_client.h
@@ -8,13 +8,13 @@
#include "cast/streaming/compound_rtcp_parser.h"
#include "gmock/gmock.h"
+namespace openscreen {
namespace cast {
-namespace streaming {
class MockCompoundRtcpParserClient : public CompoundRtcpParser::Client {
public:
MOCK_METHOD1(OnReceiverReferenceTimeAdvanced,
- void(openscreen::Clock::time_point reference_time));
+ void(Clock::time_point reference_time));
MOCK_METHOD1(OnReceiverReport, void(const RtcpReportBlock& receiver_report));
MOCK_METHOD0(OnReceiverIndicatesPictureLoss, void());
MOCK_METHOD2(OnReceiverCheckpoint,
@@ -23,7 +23,7 @@ class MockCompoundRtcpParserClient : public CompoundRtcpParser::Client {
MOCK_METHOD1(OnReceiverIsMissingPackets, void(std::vector<PacketNack> nacks));
};
-} // namespace streaming
} // namespace cast
+} // namespace openscreen
#endif // CAST_STREAMING_MOCK_COMPOUND_RTCP_PARSER_CLIENT_H_