Index: ash/drag_drop/drag_drop_controller.cc |
=================================================================== |
--- ash/drag_drop/drag_drop_controller.cc (revision 170738) |
+++ ash/drag_drop/drag_drop_controller.cc (working copy) |
@@ -106,6 +106,11 @@ |
if (IsDragDropInProgress()) |
return 0; |
+#if defined(OS_WIN) |
+ NOTIMPLEMENTED(); |
+ return 0; |
+#else |
+ // TODO! |
const ui::OSExchangeDataProviderAura& provider = |
static_cast<const ui::OSExchangeDataProviderAura&>(data.provider()); |
// We do not support touch drag/drop without a drag image. |
@@ -180,6 +185,7 @@ |
drag_source_window_->RemoveObserver(this); |
drag_source_window_ = NULL; |
} |
+#endif |
return drag_operation_; |
} |