diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 01:02:38 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 01:02:38 +0000 |
commit | f554832167558b7f4810883b59aeb73b8f79114f (patch) | |
tree | 002509ec0af088e08588bb2eb6e4ee8274beed77 /views/controls/table | |
parent | 905ec55d6d282074a5b927c10404c864ed3f144a (diff) | |
download | chromium_src-f554832167558b7f4810883b59aeb73b8f79114f.zip chromium_src-f554832167558b7f4810883b59aeb73b8f79114f.tar.gz chromium_src-f554832167558b7f4810883b59aeb73b8f79114f.tar.bz2 |
The TableViewObserver::OnKeyDown method signature was changed recently and
the bookmark manager view had not been properly updated and was not called
anymore, breaking the keyboard shortcuts.
This was broken in the TaskManager as well.
Also changed the TreeView to use the base::KeyboardCode.
BUG=25533
TEST=Test that the different shortcuts (CTRL-X,CTRL-V, CTRL-C, DELETE,
ENTER...) work in the bookmark manager.
Test that in the TaskManager, pressing ENTER activates the selected tab.
Review URL: http://codereview.chromium.org/322006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/table')
-rw-r--r-- | views/controls/table/table_view_observer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/controls/table/table_view_observer.h b/views/controls/table/table_view_observer.h index 6b8bef2..f4cacbf 100644 --- a/views/controls/table/table_view_observer.h +++ b/views/controls/table/table_view_observer.h @@ -5,6 +5,8 @@ #ifndef VIEWS_CONTROLS_TABLE_TABLE_VIEW_OBSERVER_H_ #define VIEWS_CONTROLS_TABLE_TABLE_VIEW_OBSERVER_H_ +#include "base/keyboard_codes.h" + namespace views { class TableView; |