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

Unified Diff: chrome/browser/memory/tab_manager.cc

Issue 2828663002: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/{i,l,m,n,p,r}* (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
« no previous file with comments | « chrome/browser/manifest/manifest_icon_downloader.cc ('k') | chrome/browser/memory_details.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory/tab_manager.cc
diff --git a/chrome/browser/memory/tab_manager.cc b/chrome/browser/memory/tab_manager.cc
index 86ad6c20ed7520d86844cd14954a94f56d6f6596..d26739073f7d3ddaab7f404f1358713d54f50fcf 100644
--- a/chrome/browser/memory/tab_manager.cc
+++ b/chrome/browser/memory/tab_manager.cc
@@ -973,8 +973,8 @@ void TabManager::DoChildProcessDispatch() {
// during tear down.
task_runner_->PostDelayedTask(
FROM_HERE,
- base::Bind(&TabManager::DoChildProcessDispatch,
- weak_ptr_factory_.GetWeakPtr()),
+ base::BindOnce(&TabManager::DoChildProcessDispatch,
+ weak_ptr_factory_.GetWeakPtr()),
base::TimeDelta::FromSeconds(kRendererNotificationDelayInSeconds));
}
« no previous file with comments | « chrome/browser/manifest/manifest_icon_downloader.cc ('k') | chrome/browser/memory_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698