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_APPCACHE_APPCACHE_URL_REQUEST_JOB_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_URL_REQUEST_JOB_H_ |
6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_URL_REQUEST_JOB_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_URL_REQUEST_JOB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "net/http/http_byte_range.h" | 11 #include "net/http/http_byte_range.h" |
12 #include "net/url_request/url_request_job.h" | 12 #include "net/url_request/url_request_job.h" |
13 #include "webkit/browser/appcache/appcache_entry.h" | 13 #include "webkit/browser/appcache/appcache_entry.h" |
14 #include "webkit/browser/appcache/appcache_response.h" | 14 #include "webkit/browser/appcache/appcache_response.h" |
15 #include "webkit/browser/appcache/appcache_storage.h" | 15 #include "webkit/browser/appcache/appcache_storage.h" |
16 #include "webkit/storage/webkit_storage_export.h" | 16 #include "webkit/browser/webkit_storage_browser_export.h" |
17 | 17 |
18 namespace appcache { | 18 namespace appcache { |
19 | 19 |
20 // A net::URLRequestJob derivative that knows how to return a response stored | 20 // A net::URLRequestJob derivative that knows how to return a response stored |
21 // in the appcache. | 21 // in the appcache. |
22 class WEBKIT_STORAGE_EXPORT AppCacheURLRequestJob | 22 class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheURLRequestJob |
23 : public net::URLRequestJob, | 23 : public net::URLRequestJob, |
24 public AppCacheStorage::Delegate { | 24 public AppCacheStorage::Delegate { |
25 public: | 25 public: |
26 AppCacheURLRequestJob(net::URLRequest* request, | 26 AppCacheURLRequestJob(net::URLRequest* request, |
27 net::NetworkDelegate* network_delegate, | 27 net::NetworkDelegate* network_delegate, |
28 AppCacheStorage* storage); | 28 AppCacheStorage* storage); |
29 | 29 |
30 // Informs the job of what response it should deliver. Only one of these | 30 // Informs the job of what response it should deliver. Only one of these |
31 // methods should be called, and only once per job. A job will sit idle and | 31 // methods should be called, and only once per job. A job will sit idle and |
32 // wait indefinitely until one of the deliver methods is called. | 32 // wait indefinitely until one of the deliver methods is called. |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 scoped_refptr<AppCacheResponseInfo> info_; | 144 scoped_refptr<AppCacheResponseInfo> info_; |
145 net::HttpByteRange range_requested_; | 145 net::HttpByteRange range_requested_; |
146 scoped_ptr<net::HttpResponseInfo> range_response_info_; | 146 scoped_ptr<net::HttpResponseInfo> range_response_info_; |
147 scoped_ptr<AppCacheResponseReader> reader_; | 147 scoped_ptr<AppCacheResponseReader> reader_; |
148 base::WeakPtrFactory<AppCacheURLRequestJob> weak_factory_; | 148 base::WeakPtrFactory<AppCacheURLRequestJob> weak_factory_; |
149 }; | 149 }; |
150 | 150 |
151 } // namespace appcache | 151 } // namespace appcache |
152 | 152 |
153 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 153 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
OLD | NEW |