| Index: chromeos/cert_loader.cc
|
| diff --git a/chromeos/cert_loader.cc b/chromeos/cert_loader.cc
|
| index 0940f525d4ceb08ab00a5ff0a528365c8dbadaa0..b5ac9e5f4555605090a18227ae9ea9c611003be0 100644
|
| --- a/chromeos/cert_loader.cc
|
| +++ b/chromeos/cert_loader.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chromeos/cert_loader.h"
|
|
|
| #include <algorithm>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| @@ -157,7 +158,7 @@ void CertLoader::UpdateCertificates(
|
| VLOG(1) << "UpdateCertificates: " << cert_list->size();
|
|
|
| // Ignore any existing certificates.
|
| - cert_list_ = cert_list.Pass();
|
| + cert_list_ = std::move(cert_list);
|
|
|
| bool initial_load = !certificates_loaded_;
|
| certificates_loaded_ = true;
|
|
|