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

Unified Diff: chrome/browser/importer/external_process_importer_client.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/image_decoder.cc ('k') | chrome/browser/infobars/infobar_responder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/external_process_importer_client.cc
diff --git a/chrome/browser/importer/external_process_importer_client.cc b/chrome/browser/importer/external_process_importer_client.cc
index 7c9a4064a5d4ed1c921929d51a12503b1cbe5e75..b8b3f8f090a9babc91b26b4b578efe2a0f679bb3 100644
--- a/chrome/browser/importer/external_process_importer_client.cc
+++ b/chrome/browser/importer/external_process_importer_client.cc
@@ -50,8 +50,8 @@ void ExternalProcessImporterClient::Start() {
CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
- base::Bind(&ExternalProcessImporterClient::StartProcessOnIOThread, this,
- thread_id, base::Passed(std::move(request))));
+ base::BindOnce(&ExternalProcessImporterClient::StartProcessOnIOThread,
+ this, thread_id, base::Passed(std::move(request))));
// Dictionary of all localized strings that could be needed by the importer
// in the external process.
« no previous file with comments | « chrome/browser/image_decoder.cc ('k') | chrome/browser/infobars/infobar_responder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698