diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 17:48:11 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 17:48:11 +0000 |
commit | bead2c9fb8932fde4bf40a61b9563401d11c69ef (patch) | |
tree | 3253e54b789680322ae26e6eaa9c7af380652af5 /views/widget/native_widget_gtk.h | |
parent | 805ca7ed20f92d79e02772ab8b28636a863b21bb (diff) | |
download | chromium_src-bead2c9fb8932fde4bf40a61b9563401d11c69ef.zip chromium_src-bead2c9fb8932fde4bf40a61b9563401d11c69ef.tar.gz chromium_src-bead2c9fb8932fde4bf40a61b9563401d11c69ef.tar.bz2 |
Menus in the views desktop. Adds MenuHostViews. This is buggy due to rendering issues I believe.
Moves IsMouseButtonDown to a static method on Widget that is implemented by each platform. It needs to be static as it can be called before the NativeWidget is fully initialized, and does not depend on any NativeWidget state.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7253018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/native_widget_gtk.h')
-rw-r--r-- | views/widget/native_widget_gtk.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/views/widget/native_widget_gtk.h b/views/widget/native_widget_gtk.h index e7e34f33..af0ac49 100644 --- a/views/widget/native_widget_gtk.h +++ b/views/widget/native_widget_gtk.h @@ -174,7 +174,6 @@ class NativeWidgetGtk : public internal::NativeWidgetPrivate, virtual void SetMouseCapture() OVERRIDE; virtual void ReleaseMouseCapture() OVERRIDE; virtual bool HasMouseCapture() const OVERRIDE; - virtual bool IsMouseButtonDown() const OVERRIDE; virtual InputMethod* GetInputMethodNative() OVERRIDE; virtual void ReplaceInputMethod(InputMethod* input_method) OVERRIDE; virtual void CenterWindow(const gfx::Size& size) OVERRIDE; |