summaryrefslogtreecommitdiffstats
path: root/base/path_service_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/path_service_unittest.cc')
-rw-r--r--base/path_service_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/path_service_unittest.cc b/base/path_service_unittest.cc
index d9eb0a5..32f49b2 100644
--- a/base/path_service_unittest.cc
+++ b/base/path_service_unittest.cc
@@ -27,7 +27,7 @@ bool ReturnsValidPath(int dir_type) {
#if defined(OS_WIN)
// Function to test DIR_LOCAL_APP_DATA_LOW on Windows XP. Make sure it fails.
bool ReturnsInvalidPath(int dir_type) {
- std::wstring path;
+ FilePath path;
bool result = PathService::Get(base::DIR_LOCAL_APP_DATA_LOW, &path);
return !result && path.empty();
}