Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7716)

Unified Diff: chrome/browser/ui/views/toolbar/toolbar_view_interactive_uitest.cc

Issue 2824363002: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/ui (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « chrome/browser/ui/views/toolbar/toolbar_button.cc ('k') | chrome/browser/ui/views/web_dialog_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698