summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h')
-rw-r--r--dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h b/dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h
new file mode 100644
index 0000000000..d30feb8d3e
--- /dev/null
+++ b/dom/media/webrtc/libwebrtcglue/RtcpEventObserver.h
@@ -0,0 +1,20 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef RTCP_EVENT_OBSERVER_
+#define RTCP_EVENT_OBSERVER_
+
+namespace mozilla {
+/**
+ * This provides an interface to allow for receiving notifications
+ * of rtcp bye packets and timeouts.
+ */
+class RtcpEventObserver {
+ public:
+ virtual void OnRtcpBye() = 0;
+ virtual void OnRtcpTimeout() = 0;
+};
+
+} // namespace mozilla
+#endif