Index: content/browser/streams/stream_url_request_job.h |
diff --git a/content/browser/streams/stream_url_request_job.h b/content/browser/streams/stream_url_request_job.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..98e7d1bd622e4067e2750b393175d70caac0c572 |
--- /dev/null |
+++ b/content/browser/streams/stream_url_request_job.h |
@@ -0,0 +1,61 @@ |
+// Copyright (c) 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 CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ |
+#define CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ |
+ |
+#include "net/url_request/url_request_job.h" |
+#include "content/browser/streams/chrome_stream.h" |
+#include "content/common/content_export.h" |
+ |
+namespace content { |
+class ChromeStream; |
+ |
+// A request job that handles reading stream URLs. |
+class CONTENT_EXPORT StreamURLRequestJob |
+ : public net::URLRequestJob, |
+ public ChromeStreamObserver { |
+ public: |
+ StreamURLRequestJob(net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate, |
+ scoped_refptr<ChromeStream> stream); |
+ |
+ // ChromeStreamObserver methods. |
+ virtual void OnDataAvailable(ChromeStream* stream) OVERRIDE; |
+ virtual void OnStreamComplete(ChromeStream* stream) OVERRIDE; |
+ virtual void OnBufferAvailable(ChromeStream* stream) OVERRIDE; |
+ |
+ // net::URLRequestJob methods. |
+ virtual void Start() OVERRIDE; |
+ virtual void Kill() OVERRIDE; |
+ virtual bool ReadRawData(net::IOBuffer* buf, |
+ int buf_size, |
+ int* bytes_read) OVERRIDE; |
+ virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
+ virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE; |
+ virtual int GetResponseCode() const OVERRIDE; |
+ virtual void SetExtraRequestHeaders( |
+ const net::HttpRequestHeaders& headers) OVERRIDE; |
+ |
+ protected: |
+ virtual ~StreamURLRequestJob(); |
+ |
+ private: |
+ void DidStart(); |
+ void NotifyFailure(int); |
+ void HeadersCompleted(int status_code, const std::string& status_txt); |
+ |
+ base::WeakPtrFactory<StreamURLRequestJob> weak_factory_; |
+ scoped_refptr<content::ChromeStream> stream_; |
+ bool headers_set_; |
+ scoped_refptr<net::IOBuffer> pending_buffer_; |
+ int pending_buffer_size_; |
+ scoped_ptr<net::HttpResponseInfo> response_info_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(StreamURLRequestJob); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ |