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

Unified Diff: net/url_request/url_range_request_job.h

Issue 104513002: Fixed playing video in component extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Linux compilation fix. Created 6 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/net.gyp ('k') | net/url_request/url_range_request_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..209177a6f4e1208cf8ad4b2ebf13faf70d95082b
--- /dev/null
+++ b/net/url_request/url_range_request_job.h
@@ -0,0 +1,41 @@
+// 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
+// and deal with an errors parsing the range request header.
+// This must be done after Start() has been called.
+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_
« no previous file with comments | « net/net.gyp ('k') | net/url_request/url_range_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698