Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: chrome/utility/media_galleries/itunes_library_parser.cc

Issue 94013004: Add base:: to string16s in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try again Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/utility/importer/safari_importer_unittest.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/media_galleries/itunes_library_parser.cc
diff --git a/chrome/utility/media_galleries/itunes_library_parser.cc b/chrome/utility/media_galleries/itunes_library_parser.cc
index 85871a31632c1732e39b1c349d3229b47204e2ad..aef27f7a3675f7f05c8841a24d8233199fe0a01d 100644
--- a/chrome/utility/media_galleries/itunes_library_parser.cc
+++ b/chrome/utility/media_galleries/itunes_library_parser.cc
@@ -74,9 +74,11 @@ bool GetTrackInfoFromDict(XmlReader* reader, TrackInfo* result) {
url.path().length() - 1,
&decoded_location);
#if defined(OS_WIN)
- string16 location(decoded_location.data(), decoded_location.length());
+ base::string16 location(decoded_location.data(),
+ decoded_location.length());
#else
- string16 location16(decoded_location.data(), decoded_location.length());
+ base::string16 location16(decoded_location.data(),
+ decoded_location.length());
std::string location = "/" + UTF16ToUTF8(location16);
#endif
result->location = base::FilePath(location);
« no previous file with comments | « chrome/utility/importer/safari_importer_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698