diff options
Diffstat (limited to 'chrome/test/perf/page_cycler_test.cc')
-rw-r--r-- | chrome/test/perf/page_cycler_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/perf/page_cycler_test.cc b/chrome/test/perf/page_cycler_test.cc index 61c02a2..1c07a89 100644 --- a/chrome/test/perf/page_cycler_test.cc +++ b/chrome/test/perf/page_cycler_test.cc @@ -205,7 +205,7 @@ class PageCyclerTest : public UIPerfTest { std::string cookie; ASSERT_TRUE(tab->GetCookieByName(test_url, "__pc_pages", &cookie)); - pages->assign(base::UTF8ToWide(cookie)); + pages->assign(UTF8ToWide(cookie)); ASSERT_FALSE(pages->empty()); // Wait for the report.html to be loaded. @@ -279,7 +279,7 @@ class PageCyclerTest : public UIPerfTest { L"window.domAutomationController.send(" L"window.domAutomationController.getHistogram ? " L"window.domAutomationController.getHistogram(\"" + - base::Sysbase::UTF8ToWide(name) + L"\") : '')", + base::SysUTF8ToWide(name) + L"\") : '')", &whistogram)); std::string histogram = base::SysWideToNativeMB(whistogram); printf("HISTOGRAM %s: %s = %s %s\n", |