Index: ash/drag_drop/drag_drop_controller_unittest.cc |
diff --git a/ash/drag_drop/drag_drop_controller_unittest.cc b/ash/drag_drop/drag_drop_controller_unittest.cc |
index 92cc1aaa50164c67aac5f04ec6151feb76740597..de358e58770e9c9ef1f9ab2d48ac2d4347f9c8e7 100644 |
--- a/ash/drag_drop/drag_drop_controller_unittest.cc |
+++ b/ash/drag_drop/drag_drop_controller_unittest.cc |
@@ -128,12 +128,14 @@ class TestDragDropController : public internal::DragDropController { |
private: |
int StartDragAndDrop(const ui::OSExchangeData& data, |
aura::RootWindow* root_window, |
+ aura::Window* source_window, |
const gfx::Point& location, |
- int operation) OVERRIDE { |
+ int operation, |
+ ui::DragDropTypes::DragEventSource source) OVERRIDE { |
drag_start_received_ = true; |
data.GetString(&drag_string_); |
return DragDropController::StartDragAndDrop( |
- data, root_window, location, operation); |
+ data, root_window, source_window, location, operation, source); |
} |
void DragUpdate(aura::Window* target, |