| Index: chrome/browser/component_updater/recovery_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc
|
| index 30f61b2958458f0b3c5693a4d8b45d1b8bbe991c..868e5c7e9a1613980a612fc7ffc2caccc0389417 100644
|
| --- a/chrome/browser/component_updater/recovery_component_installer.cc
|
| +++ b/chrome/browser/component_updater/recovery_component_installer.cc
|
| @@ -224,13 +224,13 @@ void DoElevatedInstallRecoveryComponent(const base::FilePath& path) {
|
| }
|
| base::Process process = base::Process::Open(pid);
|
| #endif
|
| - // This task joins a process, hence .WithSyncPrimitives().
|
| + // This task joins a process, hence .WithBaseSyncPrimitives().
|
| base::PostTaskWithTraits(
|
| FROM_HERE, base::TaskTraits()
|
| .WithShutdownBehavior(
|
| base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN)
|
| .WithPriority(base::TaskPriority::BACKGROUND)
|
| - .WithSyncPrimitives(),
|
| + .WithBaseSyncPrimitives(),
|
| base::Bind(&WaitForElevatedInstallToComplete, base::Passed(&process)));
|
| }
|
|
|
| @@ -372,13 +372,13 @@ bool RecoveryComponentInstaller::RunInstallCommand(
|
| return false;
|
|
|
| // Let worker pool thread wait for us so we don't block Chrome shutdown.
|
| - // This task joins a process, hence .WithSyncPrimitives().
|
| + // This task joins a process, hence .WithBaseSyncPrimitives().
|
| base::PostTaskWithTraits(
|
| FROM_HERE, base::TaskTraits()
|
| .WithShutdownBehavior(
|
| base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN)
|
| .WithPriority(base::TaskPriority::BACKGROUND)
|
| - .WithSyncPrimitives(),
|
| + .WithBaseSyncPrimitives(),
|
| base::Bind(&WaitForInstallToComplete, base::Passed(&process),
|
| installer_folder, prefs_));
|
|
|
|
|