s/::STLElementDeleter/STLElementDeleter/ to improve portability

Change-Id: I5234b415a6ae88ba26da571f56cc8b16748203ae
This commit is contained in:
KongQun Yang 2015-12-11 15:14:26 -08:00
parent aa805b9632
commit e1bf322b83
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class MpdBuilder {
MpdType type_; MpdType type_;
MpdOptions mpd_options_; MpdOptions mpd_options_;
std::list<AdaptationSet*> adaptation_sets_; std::list<AdaptationSet*> adaptation_sets_;
::STLElementDeleter<std::list<AdaptationSet*> > adaptation_sets_deleter_; STLElementDeleter<std::list<AdaptationSet*> > adaptation_sets_deleter_;
std::list<std::string> base_urls_; std::list<std::string> base_urls_;
std::string availability_start_time_; std::string availability_start_time_;
@ -329,7 +329,7 @@ class AdaptationSet {
std::list<ContentProtectionElement> content_protection_elements_; std::list<ContentProtectionElement> content_protection_elements_;
std::list<Representation*> representations_; std::list<Representation*> representations_;
::STLElementDeleter<std::list<Representation*> > representations_deleter_; STLElementDeleter<std::list<Representation*> > representations_deleter_;
base::AtomicSequenceNumber* const representation_counter_; base::AtomicSequenceNumber* const representation_counter_;