diff options
Diffstat (limited to 'ash/drag_drop/drag_drop_controller.h')
-rw-r--r-- | ash/drag_drop/drag_drop_controller.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ash/drag_drop/drag_drop_controller.h b/ash/drag_drop/drag_drop_controller.h index d44ba20..df13d15 100644 --- a/ash/drag_drop/drag_drop_controller.h +++ b/ash/drag_drop/drag_drop_controller.h @@ -7,6 +7,7 @@ #pragma once #include "ash/ash_export.h" +#include "base/callback.h" #include "ui/aura/client/drag_drop_client.h" #include "ui/aura/event.h" #include "ui/aura/event_filter.h" @@ -99,6 +100,9 @@ class ASH_EXPORT DragDropController // Only be used for tests. bool should_block_during_drag_drop_; + // Closure for quitting nested message loop. + base::Closure quit_closure_; + DISALLOW_COPY_AND_ASSIGN(DragDropController); }; |