diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-16 17:21:23 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-16 17:21:23 +0000 |
commit | 2f2b57b7e32777e656d4dbbbc04cd914d5b94472 (patch) | |
tree | 9e925e8063d39c06c4edb068d2f3a371ff395589 /views/focus/accelerator_handler_touch.cc | |
parent | 4e8655deaccc49465a6c18055887d1e0e2501a55 (diff) | |
download | chromium_src-2f2b57b7e32777e656d4dbbbc04cd914d5b94472.zip chromium_src-2f2b57b7e32777e656d4dbbbc04cd914d5b94472.tar.gz chromium_src-2f2b57b7e32777e656d4dbbbc04cd914d5b94472.tar.bz2 |
Re-land:
Move private NativeWidget methods to new internal interface
NativeWidgetPrivate.
This should make it harder to abuse accidentally.
BUG=72040
TEST=none
Review URL: http://codereview.chromium.org/7170019
Review URL: http://codereview.chromium.org/7189012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89357 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/focus/accelerator_handler_touch.cc')
-rw-r--r-- | views/focus/accelerator_handler_touch.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/focus/accelerator_handler_touch.cc b/views/focus/accelerator_handler_touch.cc index 9edf516..3ffbd6a 100644 --- a/views/focus/accelerator_handler_touch.cc +++ b/views/focus/accelerator_handler_touch.cc @@ -32,13 +32,13 @@ Widget* FindWidgetForGdkWindow(GdkWindow* gdk_window) { DLOG(WARNING) << "no GtkWidget found for that GdkWindow"; return NULL; } - NativeWidget* widget = NativeWidget::GetNativeWidgetForNativeView(gtk_widget); + Widget* widget = Widget::GetWidgetForNativeView(gtk_widget); if (!widget) { DLOG(WARNING) << "no NativeWidgetGtk found for that GtkWidget"; return NULL; } - return widget->GetWidget(); + return widget; } } // namespace |