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

Unified Diff: chrome/browser/ui/exclusive_access/fullscreen_controller.cc

Issue 2824363002: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/ui (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
Index: chrome/browser/ui/exclusive_access/fullscreen_controller.cc
diff --git a/chrome/browser/ui/exclusive_access/fullscreen_controller.cc b/chrome/browser/ui/exclusive_access/fullscreen_controller.cc
index 790fb9959588fc1b33c14695a1fbb42c37892465..5ed0c79c6548fcd37cdb2f1638c06f55b9d21498 100644
--- a/chrome/browser/ui/exclusive_access/fullscreen_controller.cc
+++ b/chrome/browser/ui/exclusive_access/fullscreen_controller.cc
@@ -299,8 +299,8 @@ void FullscreenController::ExitExclusiveAccessIfNecessary() {
void FullscreenController::PostFullscreenChangeNotification(
bool is_fullscreen) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
- FROM_HERE, base::Bind(&FullscreenController::NotifyFullscreenChange,
- ptr_factory_.GetWeakPtr(), is_fullscreen));
+ FROM_HERE, base::BindOnce(&FullscreenController::NotifyFullscreenChange,
+ ptr_factory_.GetWeakPtr(), is_fullscreen));
}
void FullscreenController::NotifyFullscreenChange(bool is_fullscreen) {
« no previous file with comments | « chrome/browser/ui/crypto_module_delegate_nss.cc ('k') | chrome/browser/ui/extensions/extension_installed_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698