| Index: net/url_request/url_request_file_job.h
|
| diff --git a/net/url_request/url_request_file_job.h b/net/url_request/url_request_file_job.h
|
| index 1a09b042bc7148f2d48c25d51fc105a6529e9d13..4dbcb0bd481a59eeb10780252d6e22089e3ce10c 100644
|
| --- a/net/url_request/url_request_file_job.h
|
| +++ b/net/url_request/url_request_file_job.h
|
| @@ -28,6 +28,13 @@ class URLRequestFileJob : public URLRequestJob {
|
| public:
|
| URLRequestFileJob(URLRequest* request, const FilePath& file_path);
|
|
|
| + static URLRequest::ProtocolFactory Factory;
|
| +
|
| +#if defined(OS_CHROMEOS)
|
| + static bool AccessDisabled(const FilePath& file_path);
|
| +#endif
|
| +
|
| + // URLRequestJob:
|
| virtual void Start();
|
| virtual void Kill();
|
| virtual bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read);
|
| @@ -37,12 +44,6 @@ class URLRequestFileJob : public URLRequestJob {
|
| virtual bool GetMimeType(std::string* mime_type) const;
|
| virtual void SetExtraRequestHeaders(const HttpRequestHeaders& headers);
|
|
|
| - static URLRequest::ProtocolFactory Factory;
|
| -
|
| -#if defined(OS_CHROMEOS)
|
| - static bool AccessDisabled(const FilePath& file_path);
|
| -#endif
|
| -
|
| protected:
|
| virtual ~URLRequestFileJob();
|
|
|
|
|