| Index: ash/drag_drop/drag_drop_controller.cc
|
| diff --git a/ash/drag_drop/drag_drop_controller.cc b/ash/drag_drop/drag_drop_controller.cc
|
| index 09e0aad26eda8e4047467790d8eb5b8c792230c3..5a3f7df11af78d713f00ca394ac9db092a8542c5 100644
|
| --- a/ash/drag_drop/drag_drop_controller.cc
|
| +++ b/ash/drag_drop/drag_drop_controller.cc
|
| @@ -149,7 +149,7 @@ void DragDropController::Drop(aura::Window* target,
|
|
|
| Cleanup();
|
| if (should_block_during_drag_drop_)
|
| - MessageLoop::current()->Quit();
|
| + MessageLoop::current()->QuitNow();
|
| }
|
|
|
| void DragDropController::DragCancel() {
|
| @@ -167,7 +167,7 @@ void DragDropController::DragCancel() {
|
| drag_operation_ = 0;
|
| StartCanceledAnimation();
|
| if (should_block_during_drag_drop_)
|
| - MessageLoop::current()->Quit();
|
| + MessageLoop::current()->QuitNow();
|
| }
|
|
|
| bool DragDropController::IsDragDropInProgress() {
|
|
|