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

Unified Diff: chrome/browser/chromeos/compact_navigation_bar_browsertest.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
Index: chrome/browser/chromeos/compact_navigation_bar_browsertest.cc
===================================================================
--- chrome/browser/chromeos/compact_navigation_bar_browsertest.cc (revision 45975)
+++ chrome/browser/chromeos/compact_navigation_bar_browsertest.cc (working copy)
@@ -50,16 +50,16 @@
gfx::NativeWindow window = browser()->window()->GetNativeHandle();
// ctrl-shift-c should toggle compact navigation bar.
- ui_controls::SendKeyPress(window, base::VKEY_C, true, true, false);
+ ui_controls::SendKeyPress(window, base::VKEY_C, true, true, false, false);
ui_test_utils::RunAllPendingInMessageLoop();
EXPECT_TRUE(IsViewIdVisible(VIEW_ID_COMPACT_NAV_BAR));
- ui_controls::SendKeyPress(window, base::VKEY_C, true, true, false);
+ ui_controls::SendKeyPress(window, base::VKEY_C, true, true, false, false);
ui_test_utils::RunAllPendingInMessageLoop();
EXPECT_FALSE(IsViewIdVisible(VIEW_ID_COMPACT_NAV_BAR));
// but ctrl-alt-c should not.
- ui_controls::SendKeyPress(window, base::VKEY_C, true, false, true);
+ ui_controls::SendKeyPress(window, base::VKEY_C, true, false, true, false);
ui_test_utils::RunAllPendingInMessageLoop();
EXPECT_FALSE(IsViewIdVisible(VIEW_ID_COMPACT_NAV_BAR));
}
« no previous file with comments | « chrome/browser/chromeos/compact_location_bar_host_browsertest.cc ('k') | chrome/browser/views/bookmark_bar_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698