From 6ec54c1e86aa5d29c7223a86acbfa850be39c806 Mon Sep 17 00:00:00 2001 From: "estade@chromium.org" Date: Thu, 15 Oct 2009 03:41:02 +0000 Subject: Revert wstring patch (r29078 and follow up commits). It is causing failures on the buildbots. TBR=nsylvain Review URL: http://codereview.chromium.org/280004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29085 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/test/perf/chrome_frame_perftest.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'chrome_frame/test/perf') diff --git a/chrome_frame/test/perf/chrome_frame_perftest.cc b/chrome_frame/test/perf/chrome_frame_perftest.cc index c896fa4..79bbd7b 100644 --- a/chrome_frame/test/perf/chrome_frame_perftest.cc +++ b/chrome_frame/test/perf/chrome_frame_perftest.cc @@ -621,8 +621,7 @@ class ChromeFrameMemoryTest : public ChromeFramePerfTestBase { file_util::AppendToPath(&chrome_exe_test_path, chrome::kBrowserProcessExecutableName); - if (!file_util::PathExists( - FilePath::FromWStringHack(chrome_exe_test_path))) { + if (!file_util::PathExists(chrome_exe_test_path)) { file_util::UpOneDirectory(&chrome_exe_path); chrome_exe_test_path = chrome_exe_path; @@ -630,8 +629,7 @@ class ChromeFrameMemoryTest : public ChromeFramePerfTestBase { chrome::kBrowserProcessExecutableName); } - EXPECT_TRUE( - file_util::PathExists(FilePath::FromWStringHack(chrome_exe_test_path))); + EXPECT_TRUE(file_util::PathExists(chrome_exe_test_path)); return chrome_exe_path; } -- cgit v1.1