| Index: content/renderer/pepper/pepper_url_loader_host.cc
|
| diff --git a/content/renderer/pepper/pepper_url_loader_host.cc b/content/renderer/pepper/pepper_url_loader_host.cc
|
| index 53bc31305fbc93fcd7700bc3f722f8490c7eaab3..e3629b316f20327e77a4d071a17e315d3e5c9818 100644
|
| --- a/content/renderer/pepper/pepper_url_loader_host.cc
|
| +++ b/content/renderer/pepper/pepper_url_loader_host.cc
|
| @@ -100,7 +100,7 @@ PepperURLLoaderHost::~PepperURLLoaderHost() {
|
| // re-entering the scoped_ptr destructor with the same scoped_ptr object
|
| // via loader_.reset(). Be sure that loader_ is first NULL then destroy
|
| // the scoped_ptr. See http://crbug.com/159429.
|
| - scoped_ptr<blink::WebURLLoader> for_destruction_only(loader_.release());
|
| + std::unique_ptr<blink::WebURLLoader> for_destruction_only(loader_.release());
|
| }
|
|
|
| int32_t PepperURLLoaderHost::OnResourceMessageReceived(
|
|
|