Index: chrome/browser/extensions/extensions_service.cc |
diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc |
index f38ff0438d5e9418dffa6569674d1b11610c64a1..cbefb3f64c739377ea98108671d96269dd02dd7f 100644 |
--- a/chrome/browser/extensions/extensions_service.cc |
+++ b/chrome/browser/extensions/extensions_service.cc |
@@ -80,7 +80,8 @@ bool ExtensionsServiceBackend::LoadExtensionsFromDirectory( |
file_util::FileEnumerator::DIRECTORIES); |
for (FilePath child_path = enumerator.Next(); !child_path.value().empty(); |
child_path = enumerator.Next()) { |
- FilePath manifest_path = child_path.Append(Extension::kManifestFilename); |
+ FilePath manifest_path = |
+ child_path.AppendASCII(Extension::kManifestFilename); |
if (!file_util::PathExists(manifest_path)) { |
ReportExtensionLoadError(frontend.get(), child_path.ToWStringHack(), |
Extension::kInvalidManifestError); |