| 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 4d9f8ab6bbcfd68eb49596a33ff792883fc4ebe2..1154eb6cbc8b222f3ab529c8c208f0bab51da912 100644
|
| --- a/ash/drag_drop/drag_drop_controller_unittest.cc
|
| +++ b/ash/drag_drop/drag_drop_controller_unittest.cc
|
| @@ -128,11 +128,13 @@ class TestDragDropController : public internal::DragDropController {
|
|
|
| private:
|
| int StartDragAndDrop(const ui::OSExchangeData& data,
|
| + aura::RootWindow* root_window,
|
| const gfx::Point& location,
|
| int operation) OVERRIDE {
|
| drag_start_received_ = true;
|
| data.GetString(&drag_string_);
|
| - return DragDropController::StartDragAndDrop(data, location, operation);
|
| + return DragDropController::StartDragAndDrop(
|
| + data, root_window, location, operation);
|
| }
|
|
|
| void DragUpdate(aura::Window* target,
|
|
|