diff --git a/apps/app_launch_for_metro_restart_win.cc b/apps/app_launch_for_metro_restart_win.cc
index 1fa0cc9e36ce0..86bf775ae587b 100644
--- a/apps/app_launch_for_metro_restart_win.cc
+++ b/apps/app_launch_for_metro_restart_win.cc
@@ -76,11 +76,9 @@ void HandleAppLaunchForMetroRestart(Profile* profile) {
   }
 
   const int kRestartAppLaunchDelayMs = 1000;
-  MessageLoop::current()->PostDelayedTask(
+  base::MessageLoop::current()->PostDelayedTask(
       FROM_HERE,
-      base::Bind(&LaunchAppWithId,
-                 profile,
-                 extension_id),
+      base::Bind(&LaunchAppWithId, profile, extension_id),
       base::TimeDelta::FromMilliseconds(kRestartAppLaunchDelayMs));
 }