X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Futility%2Fmedia_galleries%2Fitunes_library_parser.cc;h=d85137fd45cd7390a61624290f09f1e63e0f6aa5;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=21fa825e7b4954a7d1ce03b45568e65eff583406;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/utility/media_galleries/itunes_library_parser.cc b/src/chrome/utility/media_galleries/itunes_library_parser.cc index 21fa825..d85137f 100644 --- a/src/chrome/utility/media_galleries/itunes_library_parser.cc +++ b/src/chrome/utility/media_galleries/itunes_library_parser.cc @@ -69,10 +69,10 @@ bool GetTrackInfoFromDict(XmlReader* reader, TrackInfo* result) { GURL url(value); if (!url.SchemeIsFile()) break; - url_canon::RawCanonOutputW<1024> decoded_location; - url_util::DecodeURLEscapeSequences(url.path().c_str() + 1, // Strip /. - url.path().length() - 1, - &decoded_location); + url::RawCanonOutputW<1024> decoded_location; + url::DecodeURLEscapeSequences(url.path().c_str() + 1, // Strip /. + url.path().length() - 1, + &decoded_location); #if defined(OS_WIN) base::string16 location(decoded_location.data(), decoded_location.length());