| Index: google_apis/drive/base_requests.cc
|
| diff --git a/google_apis/drive/base_requests.cc b/google_apis/drive/base_requests.cc
|
| index 97bc82d43b1739a54b0bd54780f29e6e0f3f3992..16dbd8f097cfa90682cdc0244a6c90d7cf80bd28 100644
|
| --- a/google_apis/drive/base_requests.cc
|
| +++ b/google_apis/drive/base_requests.cc
|
| @@ -293,8 +293,8 @@ int ResponseWriter::Write(net::IOBuffer* buffer,
|
| int num_bytes,
|
| const net::CompletionCallback& callback) {
|
| if (!get_content_callback_.is_null()) {
|
| - get_content_callback_.Run(HTTP_SUCCESS, base::WrapUnique(new std::string(
|
| - buffer->data(), num_bytes)));
|
| + get_content_callback_.Run(
|
| + HTTP_SUCCESS, base::MakeUnique<std::string>(buffer->data(), num_bytes));
|
| }
|
|
|
| if (file_writer_) {
|
|
|