Chromium Code Reviews| Index: net/url_request/url_range_request_job.h |
| diff --git a/net/url_request/url_range_request_job.h b/net/url_request/url_range_request_job.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ebc638d6f15c8898242b05513a9d076a8bd74bdb |
| --- /dev/null |
| +++ b/net/url_request/url_range_request_job.h |
| @@ -0,0 +1,40 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef NET_URL_REQUEST_URL_RANGE_REQUEST_JOB_H_ |
| +#define NET_URL_REQUEST_URL_RANGE_REQUEST_JOB_H_ |
| + |
| +#include "net/base/net_export.h" |
| +#include "net/http/http_byte_range.h" |
| +#include "net/url_request/url_request_job.h" |
| + |
| +namespace net { |
| + |
| +class HttpRequestHeaders; |
| + |
| +// URLRequestJob with support for parsing range requests. |
| +// It is up to subclasses to handle the response, |
|
mmenke
2014/01/09 15:49:24
nit: Comma not needed.
|
| +// and pass any errors parsing the ranges after Start() has been called. |
|
mmenke
2014/01/09 15:49:24
nit: This isn't clear. Maybe "and deal with an e
|
| +class NET_EXPORT URLRangeRequestJob : public URLRequestJob { |
| + public: |
| + URLRangeRequestJob(URLRequest* request, |
| + NetworkDelegate* delegate); |
| + |
| + virtual void SetExtraRequestHeaders( |
| + const HttpRequestHeaders& headers) OVERRIDE; |
| + |
| + const std::vector<HttpByteRange>& ranges() const { return ranges_; } |
| + int range_parse_result() const { return range_parse_result_; } |
| + |
| + protected: |
| + virtual ~URLRangeRequestJob(); |
| + |
| + private: |
| + std::vector<HttpByteRange> ranges_; |
| + int range_parse_result_; |
| +}; |
| + |
| +} // namespace net |
| + |
| +#endif // NET_URL_REQUEST_URL_RANGE_REQUEST_JOB_H_ |