diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-31 03:28:50 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-31 03:28:50 +0000 |
commit | b474ef25d6fe1f2df2949dcdead2a8cf3462c4de (patch) | |
tree | 2f7c95923656d7fb1dde3a68b472f44aec0057b8 /chrome/browser/tab_contents/navigation_controller_unittest.cc | |
parent | bd883b833f20d010ba6682a2bf7e780240d909b3 (diff) | |
download | chromium_src-b474ef25d6fe1f2df2949dcdead2a8cf3462c4de.zip chromium_src-b474ef25d6fe1f2df2949dcdead2a8cf3462c4de.tar.gz chromium_src-b474ef25d6fe1f2df2949dcdead2a8cf3462c4de.tar.bz2 |
Remove more occurrences of FromWStringHack from code base.
BUG=24672
TEST=trybots
Review URL: http://codereview.chromium.org/2401001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48584 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/navigation_controller_unittest.cc')
-rw-r--r-- | chrome/browser/tab_contents/navigation_controller_unittest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/navigation_controller_unittest.cc b/chrome/browser/tab_contents/navigation_controller_unittest.cc index 4c572e6..658cbee 100644 --- a/chrome/browser/tab_contents/navigation_controller_unittest.cc +++ b/chrome/browser/tab_contents/navigation_controller_unittest.cc @@ -89,7 +89,7 @@ class NavigationControllerHistoryTest : public NavigationControllerTest { NavigationControllerTest::TearDown(); ASSERT_TRUE(file_util::Delete(test_dir_, true)); - ASSERT_FALSE(file_util::PathExists(FilePath::FromWStringHack(test_dir_))); + ASSERT_FALSE(file_util::PathExists(test_dir_)); } // Deletes the current profile manager and creates a new one. Indirectly this @@ -129,8 +129,7 @@ class NavigationControllerHistoryTest : public NavigationControllerTest { private: ProfileManager* profile_manager_; - std::wstring test_dir_; - std::wstring profile_path_; + FilePath test_dir_; }; void RegisterForAllNavNotifications(TestNotificationTracker* tracker, |