| Index: chrome/browser/browser_about_handler.cc
|
| diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc
|
| index a89d62b817375383b7648ce2fd1c6227bcbe737e..e576359fc6d2a5bd135e3800023ef3ac7052486b 100644
|
| --- a/chrome/browser/browser_about_handler.cc
|
| +++ b/chrome/browser/browser_about_handler.cc
|
| @@ -147,11 +147,11 @@ bool HandleNonNavigationAboutURL(const GURL& url) {
|
| // Call AttemptRestart after chrome::Navigate() completes to avoid access of
|
| // gtk objects after they are destroyed by BrowserWindowGtk::Close().
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| - FROM_HERE, base::Bind(&chrome::AttemptRestart));
|
| + FROM_HERE, base::BindOnce(&chrome::AttemptRestart));
|
| return true;
|
| } else if (base::LowerCaseEqualsASCII(spec, chrome::kChromeUIQuitURL)) {
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| - FROM_HERE, base::Bind(&chrome::AttemptExit));
|
| + FROM_HERE, base::BindOnce(&chrome::AttemptExit));
|
| return true;
|
| }
|
|
|
|
|