Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: net/url_request/url_request_file_job.h

Issue 1410643007: URLRequestJob: change ReadRawData contract (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Randy's comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 20 matching lines...) Expand all
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 void Start() override; 39 void Start() override;
40 void Kill() override; 40 void Kill() override;
41 bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read) override; 41 int ReadRawData(IOBuffer* buf, int buf_size) override;
42 bool IsRedirectResponse(GURL* location, int* http_status_code) override; 42 bool IsRedirectResponse(GURL* location, int* http_status_code) override;
43 Filter* SetupFilter() const override; 43 Filter* SetupFilter() const override;
44 bool GetMimeType(std::string* mime_type) const override; 44 bool GetMimeType(std::string* mime_type) const override;
45 void SetExtraRequestHeaders(const HttpRequestHeaders& headers) override; 45 void SetExtraRequestHeaders(const HttpRequestHeaders& headers) override;
46 46
47 // An interface for subclasses who wish to monitor read operations. 47 // An interface for subclasses who wish to monitor read operations.
48 virtual void OnSeekComplete(int64 result); 48 virtual void OnSeekComplete(int64 result);
49 virtual void OnReadComplete(IOBuffer* buf, int result); 49 virtual void OnReadComplete(IOBuffer* buf, int result);
50 50
51 protected: 51 protected:
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // on a background thread. 90 // on a background thread.
91 void DidSeek(int64 result); 91 void DidSeek(int64 result);
92 92
93 // Callback after data is asynchronously read from the file into |buf|. 93 // Callback after data is asynchronously read from the file into |buf|.
94 void DidRead(scoped_refptr<IOBuffer> buf, int result); 94 void DidRead(scoped_refptr<IOBuffer> buf, int result);
95 95
96 scoped_ptr<FileStream> stream_; 96 scoped_ptr<FileStream> stream_;
97 FileMetaInfo meta_info_; 97 FileMetaInfo meta_info_;
98 const scoped_refptr<base::TaskRunner> file_task_runner_; 98 const scoped_refptr<base::TaskRunner> file_task_runner_;
99 99
100 std::vector<HttpByteRange> byte_ranges_;
100 HttpByteRange byte_range_; 101 HttpByteRange byte_range_;
101 int64 remaining_bytes_; 102 int64 remaining_bytes_;
102 103
104 net::Error range_parse_result_;
mmenke 2015/10/27 19:41:08 net:: not needed.
mmenke 2015/10/27 19:41:08 include net/base/net_errors.h
xunjieli 2015/10/27 21:24:07 Done.
xunjieli 2015/10/27 21:24:07 Done.
105
103 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_; 106 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_;
104 107
105 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob); 108 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob);
106 }; 109 };
107 110
108 } // namespace net 111 } // namespace net
109 112
110 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ 113 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698