Commit 8d92bb2e authored by Etienne Pierre-doray's avatar Etienne Pierre-doray Committed by Commit Bot

[MessageLoop]: Replace MessageLoopCurrent::task_runner() in /chromeos/attestation.

MessageLoopCurrent::task_runner() is depecated.
This CL replaces it with with ThreadTaskRunnerHandle::Get().
A small step towards deleting MessageLoop.

This CL was generated with git cl split.
Refer to the top-level CL if necessary :
https://chromium-review.googlesource.com/c/chromium/src/+/1631693

Please CQ if LGTY!

This CL was uploaded by git cl split.

R=bartfab@chromium.org

Bug: 616447
Change-Id: Ic2369def770fcd2121321a1e854b763cca0627e0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1636204
Auto-Submit: Etienne Pierre-Doray <etiennep@chromium.org>
Reviewed-by: default avatarBartosz Fabianowski <bartfab@chromium.org>
Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org>
Cr-Commit-Position: refs/heads/master@{#676973}
parent 67fd4d9f
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/memory/ptr_util.h" #include "base/memory/ptr_util.h"
#include "base/message_loop/message_loop_current.h"
#include "base/optional.h" #include "base/optional.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/timer/timer.h" #include "base/timer/timer.h"
#include "chromeos/cryptohome/async_method_caller.h" #include "chromeos/cryptohome/async_method_caller.h"
#include "chromeos/cryptohome/cryptohome_parameters.h" #include "chromeos/cryptohome/cryptohome_parameters.h"
...@@ -320,7 +320,7 @@ void AttestationFlow::CheckAttestationReadyAndReschedule( ...@@ -320,7 +320,7 @@ void AttestationFlow::CheckAttestationReadyAndReschedule(
if (base::TimeTicks::Now() < end_time) { if (base::TimeTicks::Now() < end_time) {
LOG(WARNING) << "Attestation: Not prepared yet." LOG(WARNING) << "Attestation: Not prepared yet."
<< " Retrying in " << retry_delay_ << "."; << " Retrying in " << retry_delay_ << ".";
base::MessageLoopCurrent::Get()->task_runner()->PostDelayedTask( base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
FROM_HERE, FROM_HERE,
base::BindOnce(&AttestationFlow::WaitForAttestationReadyAndStartEnroll, base::BindOnce(&AttestationFlow::WaitForAttestationReadyAndStartEnroll,
weak_factory_.GetWeakPtr(), end_time, on_failure, weak_factory_.GetWeakPtr(), end_time, on_failure,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment