| Index: content/browser/shared_worker/shared_worker_host.cc
|
| diff --git a/content/browser/shared_worker/shared_worker_host.cc b/content/browser/shared_worker/shared_worker_host.cc
|
| index e98be02d575c1eeb4db9212141ded20facae235e..bf32f774623d85c03c7763110359e6bf34a16e2a 100644
|
| --- a/content/browser/shared_worker/shared_worker_host.cc
|
| +++ b/content/browser/shared_worker/shared_worker_host.cc
|
| @@ -182,8 +182,9 @@ void SharedWorkerHost::WorkerConnected(int message_port_id) {
|
| }
|
| }
|
|
|
| -void SharedWorkerHost::AllowFileSystem(const GURL& url,
|
| - scoped_ptr<IPC::Message> reply_msg) {
|
| +void SharedWorkerHost::AllowFileSystem(
|
| + const GURL& url,
|
| + std::unique_ptr<IPC::Message> reply_msg) {
|
| if (!instance_)
|
| return;
|
| GetContentClient()->browser()->AllowWorkerFileSystem(
|
| @@ -196,7 +197,7 @@ void SharedWorkerHost::AllowFileSystem(const GURL& url,
|
| }
|
|
|
| void SharedWorkerHost::AllowFileSystemResponse(
|
| - scoped_ptr<IPC::Message> reply_msg,
|
| + std::unique_ptr<IPC::Message> reply_msg,
|
| bool allowed) {
|
| WorkerProcessHostMsg_RequestFileSystemAccessSync::WriteReplyParams(
|
| reply_msg.get(),
|
|
|