diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-26 20:51:02 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-26 20:51:02 +0000 |
commit | 40e59f901bc45d009b01b5252dc1e6140ba67642 (patch) | |
tree | 880793e36522e87653c88b867b6e166d2a8d33c2 /chrome/browser/views | |
parent | 34831e0d903dc77863f64096e73f136f4742269b (diff) | |
download | chromium_src-40e59f901bc45d009b01b5252dc1e6140ba67642.zip chromium_src-40e59f901bc45d009b01b5252dc1e6140ba67642.tar.gz chromium_src-40e59f901bc45d009b01b5252dc1e6140ba67642.tar.bz2 |
Attempt 2 at landing bookmark menus.
The build breakage was the result of a bad ifdef in MenuController,
specifically around the OnKeyDown method.
BUG=none
TEST=none
TBR=ben@chromium.org
Review URL: http://codereview.chromium.org/173517
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24526 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rw-r--r-- | chrome/browser/views/bookmark_bar_view_test.cc | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/chrome/browser/views/bookmark_bar_view_test.cc b/chrome/browser/views/bookmark_bar_view_test.cc index 3d683f6..751a1ec 100644 --- a/chrome/browser/views/bookmark_bar_view_test.cc +++ b/chrome/browser/views/bookmark_bar_view_test.cc @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "base/keyboard_codes.h" #include "base/string_util.h" #include "chrome/browser/automation/ui_controls.h" #include "chrome/browser/bookmarks/bookmark_model.h" @@ -67,7 +68,7 @@ class TestingPageNavigator : public PageNavigator { class BookmarkBarViewEventTestBase : public ViewEventTestBase { public: BookmarkBarViewEventTestBase() - : ViewEventTestBase(), bb_view_(NULL), model_(NULL) { + : ViewEventTestBase(), model_(NULL), bb_view_(NULL) { } virtual void SetUp() { @@ -746,7 +747,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send a down event, which should select the first item. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_DOWN, false, false, false, + NULL, base::VKEY_DOWN, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step3)); } @@ -759,7 +760,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send a key down event, which should select the next item. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_DOWN, false, false, false, + NULL, base::VKEY_DOWN, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step4)); } @@ -772,7 +773,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send a right arrow to force the menu to open. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_RIGHT, false, false, false, + NULL, base::VKEY_RIGHT, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step5)); } @@ -788,7 +789,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send a left arrow to close the submenu. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_LEFT, false, false, false, + NULL, base::VKEY_LEFT, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step6)); } @@ -803,7 +804,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send a down arrow to wrap back to f1a ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_DOWN, false, false, false, + NULL, base::VKEY_DOWN, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step7)); } @@ -816,7 +817,7 @@ class BookmarkBarViewTest10 : public BookmarkBarViewEventTestBase { // Send enter, which should select the item. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_RETURN, false, false, false, + NULL, base::VKEY_RETURN, false, false, false, CreateEventTask(this, &BookmarkBarViewTest10::Step8)); } @@ -865,7 +866,7 @@ class BookmarkBarViewTest11 : public BookmarkBarViewEventTestBase { void Step3() { // Send escape so that the context menu hides. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_ESCAPE, false, false, false, + NULL, base::VKEY_ESCAPE, false, false, false, CreateEventTask(this, &BookmarkBarViewTest11::Step4)); } @@ -952,7 +953,7 @@ class BookmarkBarViewTest12 : public BookmarkBarViewEventTestBase { void Step4() { // Press tab to give focus to the cancel button. - ui_controls::SendKeyPress(NULL, VK_TAB, false, false, false); + ui_controls::SendKeyPress(NULL, base::VKEY_TAB, false, false, false); // For some reason return isn't processed correctly unless we delay. MessageLoop::current()->PostDelayedTask(FROM_HERE, @@ -962,7 +963,7 @@ class BookmarkBarViewTest12 : public BookmarkBarViewEventTestBase { void Step5() { // And press enter so that the cancel button is selected. ui_controls::SendKeyPressNotifyWhenDone( - NULL, VK_RETURN, false, false, false, + NULL, base::VKEY_RETURN, false, false, false, CreateEventTask(this, &BookmarkBarViewTest12::Step6)); } |