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_BLOB_BLOB_URL_REQUEST_JOB_H_ | 5 #ifndef WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ |
6 #define WEBKIT_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 "base/platform_file.h" | 12 #include "base/platform_file.h" |
13 #include "net/http/http_byte_range.h" | 13 #include "net/http/http_byte_range.h" |
14 #include "net/url_request/url_request_job.h" | 14 #include "net/url_request/url_request_job.h" |
15 #include "webkit/blob/blob_data.h" | 15 #include "webkit/common/blob/blob_data.h" |
16 #include "webkit/storage/webkit_storage_export.h" | 16 #include "webkit/storage/webkit_storage_export.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class MessageLoopProxy; | 19 class MessageLoopProxy; |
20 struct PlatformFileInfo; | 20 struct PlatformFileInfo; |
21 } | 21 } |
22 | 22 |
23 namespace fileapi { | 23 namespace fileapi { |
24 class FileSystemContext; | 24 class FileSystemContext; |
25 } | 25 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 bool headers_set_; | 109 bool headers_set_; |
110 bool byte_range_set_; | 110 bool byte_range_set_; |
111 net::HttpByteRange byte_range_; | 111 net::HttpByteRange byte_range_; |
112 scoped_ptr<net::HttpResponseInfo> response_info_; | 112 scoped_ptr<net::HttpResponseInfo> response_info_; |
113 | 113 |
114 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); | 114 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); |
115 }; | 115 }; |
116 | 116 |
117 } // namespace webkit_blob | 117 } // namespace webkit_blob |
118 | 118 |
119 #endif // WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_H_ | 119 #endif // WEBKIT_BROWSER_BLOB_BLOB_URL_REQUEST_JOB_H_ |
OLD | NEW |