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

Unified Diff: chrome/test/automated_ui_tests/automated_ui_test_test.cc

Issue 6312154: Remove wstring from RVH's run Javascript command.... (Closed) Base URL: svn://chrome-svn/chrome/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
Index: chrome/test/automated_ui_tests/automated_ui_test_test.cc
===================================================================
--- chrome/test/automated_ui_tests/automated_ui_test_test.cc (revision 73855)
+++ chrome/test/automated_ui_tests/automated_ui_test_test.cc (working copy)
@@ -29,9 +29,9 @@
ASSERT_TRUE(active_browser()->GetActiveTab()->GetCurrentURL(&url));
EXPECT_EQ(GURL(chrome::kAboutBlankURL), url);
- std::wstring title;
+ string16 title;
ASSERT_TRUE(active_browser()->GetActiveTab()->GetTabTitle(&title));
- EXPECT_EQ(L"", title);
+ EXPECT_EQ(string16(), title);
}
TEST_F(AutomatedUITestBase, OpenNewTab) {

Powered by Google App Engine
This is Rietveld 408576698