| Index: net/url_request/file_protocol_handler.h
|
| diff --git a/net/url_request/file_protocol_handler.h b/net/url_request/file_protocol_handler.h
|
| index 78956a934711f141b44c8cff35b92585c5f1b6a1..f13e2336e85c696b3998e27a0a999412a2f908f1 100644
|
| --- a/net/url_request/file_protocol_handler.h
|
| +++ b/net/url_request/file_protocol_handler.h
|
| @@ -23,14 +23,15 @@ class URLRequestJob;
|
|
|
| // Implements a ProtocolHandler for File jobs. If |network_delegate_| is NULL,
|
| // then all file requests will fail with ERR_ACCESS_DENIED.
|
| -class NET_EXPORT FileProtocolHandler :
|
| - public URLRequestJobFactory::ProtocolHandler {
|
| +class NET_EXPORT FileProtocolHandler
|
| + : public URLRequestJobFactory::ProtocolHandler {
|
| public:
|
| explicit FileProtocolHandler(
|
| const scoped_refptr<base::TaskRunner>& file_task_runner);
|
| virtual ~FileProtocolHandler();
|
| virtual URLRequestJob* MaybeCreateJob(
|
| - URLRequest* request, NetworkDelegate* network_delegate) const OVERRIDE;
|
| + URLRequest* request,
|
| + NetworkDelegate* network_delegate) const OVERRIDE;
|
| virtual bool IsSafeRedirectTarget(const GURL& location) const OVERRIDE;
|
|
|
| private:
|
|
|