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

Unified Diff: chrome/browser/browser_focus_uitest.cc

Issue 1701006: Implement UI automation on the Mac.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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/browser/automation/ui_controls_win.cc ('k') | chrome/browser/browser_keyevents_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_focus_uitest.cc
===================================================================
--- chrome/browser/browser_focus_uitest.cc (revision 45975)
+++ chrome/browser/browser_focus_uitest.cc (working copy)
@@ -304,7 +304,7 @@
ASSERT_TRUE(IsViewFocused(vid));
ui_controls::SendKeyPressNotifyWhenDone(window, base::VKEY_TAB, true,
- false, false,
+ false, false, false,
new MessageLoop::QuitTask());
ui_test_utils::RunMessageLoop();
}
@@ -317,7 +317,7 @@
ASSERT_TRUE(IsViewFocused(vid));
ui_controls::SendKeyPressNotifyWhenDone(window, base::VKEY_TAB, true,
- true, false,
+ true, false, false,
new MessageLoop::QuitTask());
ui_test_utils::RunMessageLoop();
}
@@ -472,7 +472,7 @@
ASSERT_STREQ(kExpElementIDs[j], actual.c_str());
ASSERT_TRUE(ui_controls::SendKeyPress(window, base::VKEY_TAB,
- false, false, false));
+ false, false, false, false));
if (j < arraysize(kExpElementIDs) - 1) {
ui_test_utils::WaitForFocusChange(browser()->GetSelectedTabContents()->
@@ -499,7 +499,7 @@
for (size_t j = 0; j < 7; ++j) {
SCOPED_TRACE(StringPrintf("inner loop: %" PRIuS, j));
ASSERT_TRUE(ui_controls::SendKeyPress(window, base::VKEY_TAB,
- false, true, false));
+ false, true, false, false));
if (j < arraysize(kExpElementIDs) - 1) {
ui_test_utils::WaitForFocusChange(browser()->GetSelectedTabContents()->
@@ -571,7 +571,7 @@
ASSERT_STREQ(kExpElementIDs[j], actual.c_str());
ASSERT_TRUE(ui_controls::SendKeyPress(window, base::VKEY_TAB,
- false, false, false));
+ false, false, false, false));
if (j < arraysize(kExpElementIDs) - 1) {
interstitial_page->WaitForFocusChange();
@@ -595,7 +595,7 @@
// Now let's press shift-tab to move the focus in reverse.
for (size_t j = 0; j < 7; ++j) {
ASSERT_TRUE(ui_controls::SendKeyPress(window, base::VKEY_TAB,
- false, true, false));
+ false, true, false, false));
if (j < arraysize(kExpElementIDs) - 1) {
interstitial_page->WaitForFocusChange();
@@ -663,7 +663,7 @@
// Press Ctrl+F, which will make the Find box open and request focus.
ui_controls::SendKeyPressNotifyWhenDone(window, base::VKEY_F, true,
- false, false,
+ false, false, false,
new MessageLoop::QuitTask());
ui_test_utils::RunMessageLoop();
@@ -683,7 +683,7 @@
// Now press Ctrl+F again and focus should move to the Find box.
ui_controls::SendKeyPressNotifyWhenDone(window, base::VKEY_F, true,
- false, false,
+ false, false, false,
new MessageLoop::QuitTask());
ui_test_utils::RunMessageLoop();
ASSERT_TRUE(IsViewFocused(VIEW_ID_FIND_IN_PAGE_TEXT_FIELD));
@@ -694,7 +694,8 @@
// Now press Ctrl+F again and focus should move to the Find box.
ui_controls::SendKeyPressNotifyWhenDone(window, base::VKEY_F, true, false,
- false, new MessageLoop::QuitTask());
+ false, false,
+ new MessageLoop::QuitTask());
ui_test_utils::RunMessageLoop();
// See remark above on why we wait.
« no previous file with comments | « chrome/browser/automation/ui_controls_win.cc ('k') | chrome/browser/browser_keyevents_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698