| Index: remoting/host/gcd_rest_client.cc
|
| diff --git a/remoting/host/gcd_rest_client.cc b/remoting/host/gcd_rest_client.cc
|
| index 0a4ac48c498fc43deffe72ed827917796ab2132c..2c86a2dd1f65860acf057a6f1af217b08bed0a03 100644
|
| --- a/remoting/host/gcd_rest_client.cc
|
| +++ b/remoting/host/gcd_rest_client.cc
|
| @@ -57,9 +57,9 @@ void GcdRestClient::PatchState(
|
| scoped_ptr<base::ListValue> patch_list(new base::ListValue);
|
| base::DictionaryValue* patch_item = new base::DictionaryValue;
|
| patch_list->Append(patch_item);
|
| - patch_item->Set("patch", patch_details.Pass());
|
| + patch_item->Set("patch", std::move(patch_details));
|
| patch_item->SetDouble("timeMs", now);
|
| - patch_dict->Set("patches", patch_list.Pass());
|
| + patch_dict->Set("patches", std::move(patch_list));
|
|
|
| // Stringify the message.
|
| std::string patch_string;
|
|
|