| Index: content/public/browser/resource_dispatcher_host_delegate.h
|
| diff --git a/content/public/browser/resource_dispatcher_host_delegate.h b/content/public/browser/resource_dispatcher_host_delegate.h
|
| index ad6e2c5e981c26511c1c175be099af22054cfed0..cb40ca14da46daced7ec040515c5a983ead7a70f 100644
|
| --- a/content/public/browser/resource_dispatcher_host_delegate.h
|
| +++ b/content/public/browser/resource_dispatcher_host_delegate.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
| #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/files/file_path.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/resource_request_info.h"
|
| #include "content/public/common/resource_type.h"
|
| @@ -108,7 +108,7 @@ class CONTENT_EXPORT ResourceDispatcherHostDelegate {
|
| // Informs the delegate that a Stream was created. The Stream can be read from
|
| // the blob URL of the Stream, but can only be read once.
|
| virtual void OnStreamCreated(net::URLRequest* request,
|
| - scoped_ptr<content::StreamInfo> stream);
|
| + std::unique_ptr<content::StreamInfo> stream);
|
|
|
| // Informs the delegate that a response has started.
|
| virtual void OnResponseStarted(net::URLRequest* request,
|
|
|