| Index: chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc b/chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc
|
| index 7342af4e5ea43503652847f85eec27f4c10f9d6a..33895b23ae3313620791c20e442f1e45a5d6843c 100644
|
| --- a/chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc
|
| +++ b/chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc
|
| @@ -118,8 +118,9 @@ void ToolbarViewInteractiveUITest::DoDragAndDrop(const gfx::Point& start,
|
| }
|
|
|
| dnd_thread_->task_runner()->PostDelayedTask(
|
| - FROM_HERE, base::Bind(base::IgnoreResult(&ui_controls::SendMouseMove),
|
| - end.x(), end.y()),
|
| + FROM_HERE,
|
| + base::BindOnce(base::IgnoreResult(&ui_controls::SendMouseMove), end.x(),
|
| + end.y()),
|
| base::TimeDelta::FromMilliseconds(200));
|
| runner->Run();
|
|
|
|
|