diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:36:31 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:36:31 +0000 |
commit | b65de8b9d5bfa020d97122c1eff2115fa8e97561 (patch) | |
tree | 3eb86aed4e3352cbca7cc4b78e76f5ee26d7388c /base/path_service_unittest.cc | |
parent | 5e70f14644629b7f9fe9126553758aed25e17128 (diff) | |
download | chromium_src-b65de8b9d5bfa020d97122c1eff2115fa8e97561.zip chromium_src-b65de8b9d5bfa020d97122c1eff2115fa8e97561.tar.gz chromium_src-b65de8b9d5bfa020d97122c1eff2115fa8e97561.tar.bz2 |
Fix to use FilePath in more unittests.
Landing patch for Thiago Farina, original review: http://codereview.chromium.org/187005
BUG=None
TEST=run unit_tests.exe, base_unittests.exe.
Review URL: http://codereview.chromium.org/193101
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/path_service_unittest.cc')
-rw-r--r-- | base/path_service_unittest.cc | 2 |
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(); } |