diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 14:58:00 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 14:58:00 +0000 |
commit | ce4e55c1b59c774ec1ae337c79676087bdc52bda (patch) | |
tree | 986d3025f9f737b13fb602d1f805d0b89da92d52 /views/widget/widget_win.h | |
parent | 50ce03d67bb64724d3ebc2b4a7d7a99b2ebe2e24 (diff) | |
download | chromium_src-ce4e55c1b59c774ec1ae337c79676087bdc52bda.zip chromium_src-ce4e55c1b59c774ec1ae337c79676087bdc52bda.tar.gz chromium_src-ce4e55c1b59c774ec1ae337c79676087bdc52bda.tar.bz2 |
Fix bug with drop arrow updating on the tabstrip. See comment in widget_win.cc
http://crbug.com/74764
TEST=none
Review URL: http://codereview.chromium.org/6665050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/widget_win.h')
-rw-r--r-- | views/widget/widget_win.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/views/widget/widget_win.h b/views/widget/widget_win.h index 47863c7..2428a3e8 100644 --- a/views/widget/widget_win.h +++ b/views/widget/widget_win.h @@ -490,6 +490,9 @@ class WidgetWin : public ui::WindowImpl, // (In fact, it'll return misleading information from GetUpdateRect()). gfx::Rect layered_window_invalid_rect_; + // A factory that allows us to schedule a redraw for layered windows. + ScopedRunnableMethodFactory<WidgetWin> paint_layered_window_factory_; + // Whether or not the window should delete itself when it is destroyed. // Set this to false via its setter for stack allocated instances. bool delete_on_destroy_; |