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

Unified Diff: chrome/browser/tab_restore_browsertest.cc

Issue 10823392: Let ui_test_utils::FindInPage optionally return the selection rect. This will be used in a future c… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/browser/tab_restore_browsertest.cc
===================================================================
--- chrome/browser/tab_restore_browsertest.cc (revision 152084)
+++ chrome/browser/tab_restore_browsertest.cc (working copy)
@@ -509,7 +509,8 @@
// See if content is as expected.
EXPECT_GT(
- ui_test_utils::FindInPage(tab, ASCIIToUTF16("webkit"), true, false, NULL),
+ ui_test_utils::FindInPage(tab, ASCIIToUTF16("webkit"), true, false, NULL,
+ NULL),
0);
}
@@ -540,6 +541,7 @@
// Go back, and see if content is as expected.
GoBack(browser());
EXPECT_GT(
- ui_test_utils::FindInPage(tab, ASCIIToUTF16("webkit"), true, false, NULL),
+ ui_test_utils::FindInPage(tab, ASCIIToUTF16("webkit"), true, false, NULL,
+ NULL),
0);
}
« no previous file with comments | « chrome/browser/history/history_browsertest.cc ('k') | chrome/browser/ui/find_bar/find_bar_host_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698