diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 00:59:52 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 00:59:52 +0000 |
commit | 420138333ca7e2a5f6e5738a43f3780c98a03d42 (patch) | |
tree | 674b8f714ed45aa5f98a9e827f98bb49bcc92ba0 /views/controls/table/native_table_win.cc | |
parent | 901944666724e9e8df190aaf26bed6c6cda3ade4 (diff) | |
download | chromium_src-420138333ca7e2a5f6e5738a43f3780c98a03d42.zip chromium_src-420138333ca7e2a5f6e5738a43f3780c98a03d42.tar.gz chromium_src-420138333ca7e2a5f6e5738a43f3780c98a03d42.tar.bz2 |
Rename WillGain/Lose/DidGainFocus, Focus methods. Now there are only two notifications:
OnFocus()
OnBlur()
View gains a Focus()/Blur() processing method pair.
Cleans up code in FocusManager::SetFocusedView.
Also adds OVERRIDE to a bunch of methods.
BUG=72040
TEST=existing unittests.
Review URL: http://codereview.chromium.org/6577010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75830 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/table/native_table_win.cc')
-rw-r--r-- | views/controls/table/native_table_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/table/native_table_win.cc b/views/controls/table/native_table_win.cc index bc40a55..fd7fb4b 100644 --- a/views/controls/table/native_table_win.cc +++ b/views/controls/table/native_table_win.cc @@ -104,7 +104,7 @@ View* NativeTableWin::GetView() { void NativeTableWin::SetFocus() { // Focus the associated HWND. - Focus(); + OnFocus(); } gfx::NativeView NativeTableWin::GetTestingHandle() const { |