| Index: ppapi/proxy/ppb_url_response_info_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_url_response_info_proxy.cc b/ppapi/proxy/ppb_url_response_info_proxy.cc
|
| index 7d6f17dea64d60cbb6f88fd3c9e6e61862ee97fa..b9df46674e69195344878b1b9251a90ab935d517 100644
|
| --- a/ppapi/proxy/ppb_url_response_info_proxy.cc
|
| +++ b/ppapi/proxy/ppb_url_response_info_proxy.cc
|
| @@ -103,8 +103,8 @@ const InterfaceProxy::Info* PPB_URLResponseInfo_Proxy::GetInfo() {
|
| // static
|
| PP_Resource PPB_URLResponseInfo_Proxy::CreateResponseForResource(
|
| const HostResource& resource) {
|
| - linked_ptr<URLResponseInfo> object(new URLResponseInfo(resource));
|
| - return PluginResourceTracker::GetInstance()->AddResource(object);
|
| + return PluginResourceTracker::GetInstance()->AddResource(
|
| + new URLResponseInfo(resource));
|
| }
|
|
|
| bool PPB_URLResponseInfo_Proxy::OnMessageReceived(const IPC::Message& msg) {
|
|
|