diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 19:54:15 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 19:54:15 +0000 |
commit | e8a9a7472f544a839cbc47b8279d3ce99b0cf0a0 (patch) | |
tree | 8d784135c8791292a9413904f6b4dedbee89ab3a /views/controls/native_control_gtk.cc | |
parent | 1e4a731e18cc375d537776576d379d4349c0b86c (diff) | |
download | chromium_src-e8a9a7472f544a839cbc47b8279d3ce99b0cf0a0.zip chromium_src-e8a9a7472f544a839cbc47b8279d3ce99b0cf0a0.tar.gz chromium_src-e8a9a7472f544a839cbc47b8279d3ce99b0cf0a0.tar.bz2 |
Refactoring some of the NativeViewHost and NativeControl focus management so their consumers don't have to explicitly set the focused view.
BUG=None
TEST=Run all tests. Make sure focus is stored/restored properly in Chrome.
Review URL: http://codereview.chromium.org/214029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/native_control_gtk.cc')
-rw-r--r-- | views/controls/native_control_gtk.cc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/views/controls/native_control_gtk.cc b/views/controls/native_control_gtk.cc index 082e610..390e00d 100644 --- a/views/controls/native_control_gtk.cc +++ b/views/controls/native_control_gtk.cc @@ -63,26 +63,6 @@ void NativeControlGtk::NativeControlCreated(GtkWidget* native_control) { // Update the newly created GtkWdigetwith any resident enabled state. gtk_widget_set_sensitive(native_view(), IsEnabled()); - - // Listen for focus change event to update the FocusManager focused view. - g_signal_connect(G_OBJECT(native_control), "focus-in-event", - G_CALLBACK(CallFocusIn), this); -} - -// static -void NativeControlGtk::CallFocusIn(GtkWidget* widget, - GdkEventFocus* event, - NativeControlGtk* control) { - FocusManager* focus_manager = - FocusManager::GetFocusManagerForNativeView(widget); - if (!focus_manager) { - // TODO(jcampan): http://crbug.com/21378 Reenable this NOTREACHED() when the - // options page is only based on views. - // NOTREACHED(); - NOTIMPLEMENTED(); - return; - } - focus_manager->SetFocusedView(control->focus_view()); } } // namespace views |