OLD | NEW |
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 WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ | 5 #ifndef WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ |
6 #define WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ | 6 #define WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "net/http/http_byte_range.h" | 12 #include "net/http/http_byte_range.h" |
13 #include "net/http/http_status_code.h" | 13 #include "net/http/http_status_code.h" |
14 #include "net/url_request/url_request_job.h" | 14 #include "net/url_request/url_request_job.h" |
15 #include "webkit/browser/webkit_storage_browser_export.h" | 15 #include "webkit/browser/storage_export.h" |
16 #include "webkit/common/blob/blob_data.h" | 16 #include "webkit/common/blob/blob_data.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class MessageLoopProxy; | 19 class MessageLoopProxy; |
20 } | 20 } |
21 | 21 |
22 namespace storage { | 22 namespace storage { |
23 class FileSystemContext; | 23 class FileSystemContext; |
24 } | 24 } |
25 | 25 |
26 namespace net { | 26 namespace net { |
27 class DrainableIOBuffer; | 27 class DrainableIOBuffer; |
28 class IOBuffer; | 28 class IOBuffer; |
29 } | 29 } |
30 | 30 |
31 namespace storage { | 31 namespace storage { |
32 | 32 |
33 class FileStreamReader; | 33 class FileStreamReader; |
34 | 34 |
35 // A request job that handles reading blob URLs. | 35 // A request job that handles reading blob URLs. |
36 class WEBKIT_STORAGE_BROWSER_EXPORT BlobURLRequestJob | 36 class STORAGE_EXPORT BlobURLRequestJob |
37 : public net::URLRequestJob { | 37 : public net::URLRequestJob { |
38 public: | 38 public: |
39 BlobURLRequestJob(net::URLRequest* request, | 39 BlobURLRequestJob(net::URLRequest* request, |
40 net::NetworkDelegate* network_delegate, | 40 net::NetworkDelegate* network_delegate, |
41 BlobData* blob_data, | 41 BlobData* blob_data, |
42 storage::FileSystemContext* file_system_context, | 42 storage::FileSystemContext* file_system_context, |
43 base::MessageLoopProxy* resolving_message_loop_proxy); | 43 base::MessageLoopProxy* resolving_message_loop_proxy); |
44 | 44 |
45 // net::URLRequestJob methods. | 45 // net::URLRequestJob methods. |
46 virtual void Start() OVERRIDE; | 46 virtual void Start() OVERRIDE; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 scoped_ptr<net::HttpResponseInfo> response_info_; | 120 scoped_ptr<net::HttpResponseInfo> response_info_; |
121 | 121 |
122 base::WeakPtrFactory<BlobURLRequestJob> weak_factory_; | 122 base::WeakPtrFactory<BlobURLRequestJob> weak_factory_; |
123 | 123 |
124 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); | 124 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); |
125 }; | 125 }; |
126 | 126 |
127 } // namespace storage | 127 } // namespace storage |
128 | 128 |
129 #endif // WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ | 129 #endif // WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ |
OLD | NEW |