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

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

Issue 6249003: Add option for url_fetch_test to wait for a JS expression... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/url_fetch_test/url_fetch_test.cc
===================================================================
--- chrome/test/url_fetch_test/url_fetch_test.cc (revision 71802)
+++ chrome/test/url_fetch_test/url_fetch_test.cc (working copy)
@@ -53,8 +53,8 @@
const char* wait_cookie_name,
const char* wait_cookie_value,
const char* var_to_fetch,
- const std::wstring& wait_js_expr,
- const std::wstring& wait_js_frame_xpath,
+ const std::string& wait_js_expr,
+ const std::string& wait_js_frame_xpath,
int wait_js_timeout_ms,
UrlFetchTestResult* result) {
scoped_refptr<TabProxy> tab(GetActiveTab());
@@ -74,10 +74,11 @@
ASSERT_TRUE(result->cookie_value.length());
}
} else if (!wait_js_expr.empty()) {
- bool completed = WaitUntilJavaScriptCondition(tab.get(),
- wait_js_frame_xpath,
- wait_js_expr,
- wait_js_timeout_ms);
+ bool completed = WaitUntilJavaScriptCondition(
+ tab.get(),
+ UTF8ToWide(wait_js_frame_xpath),
+ UTF8ToWide(wait_js_expr),
+ wait_js_timeout_ms);
ASSERT_TRUE(completed);
}
if (var_to_fetch) {
@@ -150,10 +151,10 @@
cmd_line->GetSwitchValueASCII("wait_cookie_name");
std::string cookie_value =
cmd_line->GetSwitchValueASCII("wait_cookie_value");
- std::wstring js_expr =
- UTF8ToWide(cmd_line->GetSwitchValueASCII("wait_js_expr"));
- std::wstring js_frame_xpath =
- UTF8ToWide(cmd_line->GetSwitchValueASCII("wait_js_frame_xpath"));
+ std::string js_expr =
+ cmd_line->GetSwitchValueASCII("wait_js_expr");
+ std::string js_frame_xpath =
+ cmd_line->GetSwitchValueASCII("wait_js_frame_xpath");
std::string js_timeout_ms_str =
cmd_line->GetSwitchValueASCII("wait_js_timeout");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698