Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2296)

Unified Diff: chrome/test/perf/url_fetch_test.cc

Issue 12315071: Revert 184352 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/perf/tab_switching_test.cc ('k') | chrome/test/pyautolib/pyautolib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/url_fetch_test.cc
===================================================================
--- chrome/test/perf/url_fetch_test.cc (revision 184354)
+++ chrome/test/perf/url_fetch_test.cc (working copy)
@@ -67,8 +67,8 @@
} else if (!wait_js_expr.empty()) {
bool completed = WaitUntilJavaScriptCondition(
tab.get(),
- base::UTF8ToWide(wait_js_frame_xpath),
- base::UTF8ToWide(wait_js_expr),
+ UTF8ToWide(wait_js_frame_xpath),
+ UTF8ToWide(wait_js_expr),
wait_js_timeout);
ASSERT_TRUE(completed);
}
@@ -77,10 +77,10 @@
"window.domAutomationController.send(%s);", var_to_fetch);
std::wstring value;
- bool success = tab->ExecuteAndExtractString(L"",
- base::ASCIIToWide(script), &value);
+ bool success = tab->ExecuteAndExtractString(L"", ASCIIToWide(script),
+ &value);
ASSERT_TRUE(success);
- result->javascript_variable = base::WideToUTF8(value);
+ result->javascript_variable = WideToUTF8(value);
}
}
};
« no previous file with comments | « chrome/test/perf/tab_switching_test.cc ('k') | chrome/test/pyautolib/pyautolib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698