Chromium Code Reviews| Index: ui/views/widget/desktop_aura/desktop_root_window_host_win.h |
| =================================================================== |
| --- ui/views/widget/desktop_aura/desktop_root_window_host_win.h (revision 170738) |
| +++ ui/views/widget/desktop_aura/desktop_root_window_host_win.h (working copy) |
| @@ -22,6 +22,8 @@ |
| class DesktopActivationClient; |
| class DesktopCursorClient; |
| class DesktopDispatcherClient; |
| +class DesktopDragDropClientWin; |
| +class DropTargetWin; |
| class HWNDMessageHandler; |
| namespace corewm { |
| class CompoundEventFilter; |
| @@ -231,9 +233,13 @@ |
| // A simple cursor client which just forwards events to the RootWindow. |
| scoped_ptr<DesktopCursorClient> cursor_client_; |
| + scoped_ptr<DesktopDragDropClientWin> drag_drop_client_; |
| + |
| // The RootWindow's CompoundEventFilter. |
| views::corewm::CompoundEventFilter* root_window_event_filter_; |
| + scoped_refptr<DropTargetWin> drop_target_; |
|
Ben Goodger (Google)
2012/12/05 22:23:19
is there a reason this can't be owned by ddc?
jam
2012/12/05 23:04:30
it's currently accessed in HandleDestroying
|
| + |
| DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); |
| }; |