| Index: content/public/browser/android/content_protocol_handler.h
|
| diff --git a/content/public/browser/android/content_protocol_handler.h b/content/public/browser/android/content_protocol_handler.h
|
| index be9473e1bb3e12cae1277bd38644dd706d8f1caa..74a564f2ae565860e910376100ffe6cf18c00510 100644
|
| --- a/content/public/browser/android/content_protocol_handler.h
|
| +++ b/content/public/browser/android/content_protocol_handler.h
|
| @@ -6,6 +6,7 @@
|
| #define CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_PROTOCOL_HANDLER_H_
|
|
|
| #include "base/memory/ref_counted.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
| #include "net/url_request/url_request_job_factory.h"
|
|
|
| @@ -20,10 +21,9 @@ class CONTENT_EXPORT ContentProtocolHandler :
|
| public net::URLRequestJobFactory::ProtocolHandler {
|
| public:
|
| // Creates and returns a ContentProtocolHandler instance.
|
| - static ContentProtocolHandler* Create(
|
| + static scoped_ptr<ContentProtocolHandler> Create(
|
| const scoped_refptr<base::TaskRunner>& content_task_runner);
|
|
|
| - protected:
|
| ~ContentProtocolHandler() override {}
|
| };
|
|
|
|
|