Commit cbcf8a48 authored by Nico Weber's avatar Nico Weber

Remove another move() I forgot in https://codereview.chromium.org/1552613003

BUG=82385
TBR=vitalybuka@chromium.org

Review URL: https://codereview.chromium.org/1550173003 .

Cr-Commit-Position: refs/heads/master@{#367073}
parent f5a1c26a
...@@ -317,7 +317,7 @@ scoped_ptr<base::DictionaryValue> PrivetHttpServer::ProcessCreateJob( ...@@ -317,7 +317,7 @@ scoped_ptr<base::DictionaryValue> PrivetHttpServer::ProcessCreateJob(
response.reset(new base::DictionaryValue); response.reset(new base::DictionaryValue);
response->SetString("job_id", job_id); response->SetString("job_id", job_id);
response->SetInteger("expires_in", expires_in); response->SetInteger("expires_in", expires_in);
return std::move(response); return response;
case LocalPrintJob::CREATE_INVALID_TICKET: case LocalPrintJob::CREATE_INVALID_TICKET:
return CreateError("invalid_ticket"); return CreateError("invalid_ticket");
......
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