Index: ash/drag_drop/drag_drop_controller.cc |
=================================================================== |
--- ash/drag_drop/drag_drop_controller.cc (revision 171535) |
+++ 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! |
Ben Goodger (Google)
2012/12/07 22:00:26
let's make this TODO(win_ash) or TODO(cpu)
jam
2012/12/07 22:07:29
Done. Also added comment about two possible approa
|
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_; |
} |