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

Unified Diff: chrome/browser/extensions/zipfile_installer_unittest.cc

Issue 2825963003: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/extensions (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/extensions/zipfile_installer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/zipfile_installer_unittest.cc
diff --git a/chrome/browser/extensions/zipfile_installer_unittest.cc b/chrome/browser/extensions/zipfile_installer_unittest.cc
index 04841377b2615233ae0d8368b0f9477ed7bb338f..2aeaf585fb0dc44e608886e68f978bc84a6702b3 100644
--- a/chrome/browser/extensions/zipfile_installer_unittest.cc
+++ b/chrome/browser/extensions/zipfile_installer_unittest.cc
@@ -98,10 +98,8 @@ class ZipFileInstallerTest : public testing::Test {
zipfile_installer_ = ZipFileInstaller::Create(extension_service_);
base::ThreadTaskRunnerHandle::Get()->PostTask(
- FROM_HERE,
- base::Bind(&ZipFileInstaller::LoadFromZipFile,
- zipfile_installer_,
- original_path));
+ FROM_HERE, base::BindOnce(&ZipFileInstaller::LoadFromZipFile,
+ zipfile_installer_, original_path));
observer_.WaitForInstall();
}
« no previous file with comments | « chrome/browser/extensions/zipfile_installer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698