| Index: components/update_client/action_update.cc
|
| diff --git a/components/update_client/action_update.cc b/components/update_client/action_update.cc
|
| index be64b23288acc769aeee89cd14785ef8fb7fa0e4..3888d7c1214a56560556fffc582849f512fa3f01 100644
|
| --- a/components/update_client/action_update.cc
|
| +++ b/components/update_client/action_update.cc
|
| @@ -248,7 +248,7 @@ void ActionUpdateDiff::TryUpdateFull() {
|
| FROM_HERE, base::Bind(&Action::Run, base::Unretained(update_action.get()),
|
| update_context_, callback_));
|
|
|
| - update_context_->current_action.reset(update_action.release());
|
| + update_context_->current_action = std::move(update_action);
|
| }
|
|
|
| bool ActionUpdateDiff::IsBackgroundDownload(const CrxUpdateItem* item) {
|
|
|