| Index: chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
|
| diff --git a/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc b/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
|
| index 968204435c5d32c67f481308fc633556529da57c..e14acbf10c28caa47cccffcc349c0103d40f692b 100644
|
| --- a/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
|
| +++ b/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
|
| @@ -174,11 +174,11 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
|
| return;
|
| std::string xml = "<plist><dict><key>Tracks</key><dict>\n";
|
| for (size_t i = 0; i < entries.size(); ++i) {
|
| - std::string seperator;
|
| + std::string separator;
|
| #if defined(OS_WIN)
|
| - seperator = "/";
|
| + separator = "/";
|
| #endif
|
| - GURL location("file://localhost" + seperator +
|
| + GURL location("file://localhost" + separator +
|
| entries[i].location.AsUTF8Unsafe());
|
| std::string entry_string = base::StringPrintf(
|
| "<key>%" PRIuS "</key><dict>\n"
|
|
|