Chromium Code Reviews| Index: ui/views/win/hwnd_message_handler.h |
| =================================================================== |
| --- ui/views/win/hwnd_message_handler.h (revision 244514) |
| +++ ui/views/win/hwnd_message_handler.h (working copy) |
| @@ -539,9 +539,12 @@ |
| // Generates touch-ids for touch-events. |
| ui::SequentialIDGenerator id_generator_; |
| - // Indicates if the window has the WS_VSCROLL and WS_HSCROLL styles set. |
| - bool scroll_styles_set_; |
| + // Indicates if the window needs the WS_VSCROLL and WS_HSCROLL styles. |
| + bool needs_scroll_styles_; |
| + // Set to true if we are in the context of a sizing or moving operation. |
| + bool size_move_loop_; |
|
sky
2014/01/15 17:29:01
nit: in_size_move_loop_.
ananta
2014/01/15 20:10:16
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); |
| }; |