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

Side by Side Diff: content/browser/streams/stream_url_request_job.h

Issue 1439953006: Reland: URLRequestJob: change ReadRawData contract (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address David's comment 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ 5 #ifndef CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_
6 #define CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ 6 #define CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_
7 7
8 #include "net/http/http_status_code.h" 8 #include "net/http/http_status_code.h"
9 #include "net/url_request/url_request_job.h" 9 #include "net/url_request/url_request_job.h"
10 #include "content/browser/streams/stream_read_observer.h" 10 #include "content/browser/streams/stream_read_observer.h"
(...skipping 11 matching lines...) Expand all
22 StreamURLRequestJob(net::URLRequest* request, 22 StreamURLRequestJob(net::URLRequest* request,
23 net::NetworkDelegate* network_delegate, 23 net::NetworkDelegate* network_delegate,
24 scoped_refptr<Stream> stream); 24 scoped_refptr<Stream> stream);
25 25
26 // StreamObserver methods. 26 // StreamObserver methods.
27 void OnDataAvailable(Stream* stream) override; 27 void OnDataAvailable(Stream* stream) override;
28 28
29 // net::URLRequestJob methods. 29 // net::URLRequestJob methods.
30 void Start() override; 30 void Start() override;
31 void Kill() override; 31 void Kill() override;
32 bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override; 32 int ReadRawData(net::IOBuffer* buf, int buf_size) override;
33 bool GetMimeType(std::string* mime_type) const override; 33 bool GetMimeType(std::string* mime_type) const override;
34 void GetResponseInfo(net::HttpResponseInfo* info) override; 34 void GetResponseInfo(net::HttpResponseInfo* info) override;
35 int GetResponseCode() const override; 35 int GetResponseCode() const override;
36 void SetExtraRequestHeaders(const net::HttpRequestHeaders& headers) override; 36 void SetExtraRequestHeaders(const net::HttpRequestHeaders& headers) override;
37 37
38 protected: 38 protected:
39 ~StreamURLRequestJob() override; 39 ~StreamURLRequestJob() override;
40 40
41 private: 41 private:
42 void DidStart(); 42 void DidStart();
(...skipping 12 matching lines...) Expand all
55 bool request_failed_; 55 bool request_failed_;
56 56
57 base::WeakPtrFactory<StreamURLRequestJob> weak_factory_; 57 base::WeakPtrFactory<StreamURLRequestJob> weak_factory_;
58 58
59 DISALLOW_COPY_AND_ASSIGN(StreamURLRequestJob); 59 DISALLOW_COPY_AND_ASSIGN(StreamURLRequestJob);
60 }; 60 };
61 61
62 } // namespace content 62 } // namespace content
63 63
64 #endif // CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_ 64 #endif // CONTENT_BROWSER_STREAMS_STREAM_URL_REQUEST_JOB_H_
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_write_to_cache_job.cc ('k') | content/browser/streams/stream_url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698