| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // A request job that handles reading file URLs | 30 // A request job that handles reading file URLs |
| 31 class NET_EXPORT URLRequestFileJob : public URLRequestJob { | 31 class NET_EXPORT URLRequestFileJob : public URLRequestJob { |
| 32 public: | 32 public: |
| 33 URLRequestFileJob(URLRequest* request, | 33 URLRequestFileJob(URLRequest* request, |
| 34 NetworkDelegate* network_delegate, | 34 NetworkDelegate* network_delegate, |
| 35 const base::FilePath& file_path, | 35 const base::FilePath& file_path, |
| 36 const scoped_refptr<base::TaskRunner>& file_task_runner); | 36 const scoped_refptr<base::TaskRunner>& file_task_runner); |
| 37 | 37 |
| 38 // URLRequestJob: | 38 // URLRequestJob: |
| 39 virtual void Start() OVERRIDE; | 39 virtual void Start() override; |
| 40 virtual void Kill() OVERRIDE; | 40 virtual void Kill() override; |
| 41 virtual bool ReadRawData(IOBuffer* buf, | 41 virtual bool ReadRawData(IOBuffer* buf, |
| 42 int buf_size, | 42 int buf_size, |
| 43 int* bytes_read) OVERRIDE; | 43 int* bytes_read) override; |
| 44 virtual bool IsRedirectResponse(GURL* location, | 44 virtual bool IsRedirectResponse(GURL* location, |
| 45 int* http_status_code) OVERRIDE; | 45 int* http_status_code) override; |
| 46 virtual Filter* SetupFilter() const OVERRIDE; | 46 virtual Filter* SetupFilter() const override; |
| 47 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; | 47 virtual bool GetMimeType(std::string* mime_type) const override; |
| 48 virtual void SetExtraRequestHeaders( | 48 virtual void SetExtraRequestHeaders( |
| 49 const HttpRequestHeaders& headers) OVERRIDE; | 49 const HttpRequestHeaders& headers) override; |
| 50 | 50 |
| 51 // An interface for subclasses who wish to monitor read operations. | 51 // An interface for subclasses who wish to monitor read operations. |
| 52 virtual void OnSeekComplete(int64 result); | 52 virtual void OnSeekComplete(int64 result); |
| 53 virtual void OnReadComplete(net::IOBuffer* buf, int result); | 53 virtual void OnReadComplete(net::IOBuffer* buf, int result); |
| 54 | 54 |
| 55 protected: | 55 protected: |
| 56 virtual ~URLRequestFileJob(); | 56 virtual ~URLRequestFileJob(); |
| 57 | 57 |
| 58 int64 remaining_bytes() const { return remaining_bytes_; } | 58 int64 remaining_bytes() const { return remaining_bytes_; } |
| 59 | 59 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 int64 remaining_bytes_; | 105 int64 remaining_bytes_; |
| 106 | 106 |
| 107 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_; | 107 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_; |
| 108 | 108 |
| 109 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob); | 109 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob); |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace net | 112 } // namespace net |
| 113 | 113 |
| 114 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ | 114 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ |
| OLD | NEW |