Index: webrtc/modules/rtp_rtcp/source/forward_error_correction.h |
diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction.h b/webrtc/modules/rtp_rtcp/source/forward_error_correction.h |
index a3b3fa0e49344105e293a0ee033a0f551cea5b8c..c6f2738480125b9fefd1b58a7e995c1f67b6f0f4 100644 |
--- a/webrtc/modules/rtp_rtcp/source/forward_error_correction.h |
+++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction.h |
@@ -14,9 +14,9 @@ |
#include <list> |
#include <vector> |
+#include "webrtc/base/scoped_ref_ptr.h" |
#include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h" |
#include "webrtc/system_wrappers/interface/ref_count.h" |
-#include "webrtc/system_wrappers/interface/scoped_refptr.h" |
#include "webrtc/typedefs.h" |
namespace webrtc { |
@@ -92,7 +92,7 @@ class ForwardErrorCorrection { |
// packets, but not required for media packets. |
bool is_fec; // Set to true if this is an FEC packet and false |
// otherwise. |
- scoped_refptr<Packet> pkt; // Pointer to the packet storage. |
+ rtc::scoped_refptr<Packet> pkt; // Pointer to the packet storage. |
}; |
// The recovered list parameter of #DecodeFEC() will reference structs of |
@@ -110,7 +110,7 @@ class ForwardErrorCorrection { |
// caller through the callback. |
uint8_t length_recovery[2]; // Two bytes used for recovering the packet |
// length with XOR operations. |
- scoped_refptr<Packet> pkt; // Pointer to the packet storage. |
+ rtc::scoped_refptr<Packet> pkt; // Pointer to the packet storage. |
}; |
typedef std::list<Packet*> PacketList; |