Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / modules / rtp_rtcp / source / ssrc_database.h
index e1f90e7..2d4932a 100644 (file)
@@ -11,9 +11,7 @@
 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_SSRC_DATABASE_H_
 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_SSRC_DATABASE_H_
 
-#ifndef WEBRTC_NO_STL
 #include <map>
-#endif
 
 #include "webrtc/system_wrappers/interface/static_instance.h"
 #include "webrtc/typedefs.h"
@@ -46,14 +44,7 @@ private:
 
     uint32_t GenerateRandom();
 
-#ifdef WEBRTC_NO_STL
-    int _numberOfSSRC;
-    int _sizeOfSSRC;
-
-    uint32_t* _ssrcVector;
-#else
     std::map<uint32_t, uint32_t>    _ssrcMap;
-#endif
 
     CriticalSectionWrapper* _critSect;
 };