| Index: chrome/browser/ui/views/frame/browser_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
|
| index 4d3c09b477956c13a90c0dd7994103300574c09c..aa5da978399bbdd800bb2f667c00908d78d6ee4b 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -1597,8 +1597,8 @@ bool BrowserView::CanActivate() const {
|
| // that doesn't have the modal dialog the windows keep trying to get the focus
|
| // from each other on Windows. http://crbug.com/141650.
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| - FROM_HERE, base::Bind(&BrowserView::ActivateAppModalDialog,
|
| - activate_modal_dialog_factory_.GetWeakPtr()));
|
| + FROM_HERE, base::BindOnce(&BrowserView::ActivateAppModalDialog,
|
| + activate_modal_dialog_factory_.GetWeakPtr()));
|
| #endif
|
| return false;
|
| }
|
|
|