Index: base/base_paths.cc |
diff --git a/base/base_paths.cc b/base/base_paths.cc |
index 672bde150b83f1d4f0ded7602c5e711480e4ef46..76ef6342f62f9134befbf72c194478e3e9bf4a33 100644 |
--- a/base/base_paths.cc |
+++ b/base/base_paths.cc |
@@ -10,7 +10,7 @@ |
namespace base { |
-bool PathProvider(int key, std::wstring* result) { |
+bool PathProvider(int key, FilePath* result) { |
// NOTE: DIR_CURRENT is a special cased in PathService::Get |
FilePath cur; |
@@ -31,7 +31,7 @@ bool PathProvider(int key, std::wstring* result) { |
return false; |
} |
- *result = cur.ToWStringHack(); |
+ *result = cur; |
return true; |
} |