| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BLOB_BLOB_URL_REQUEST_JOB_H_ |
| 6 #define WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_H_ | 6 #define WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| 11 #include "base/task.h" | |
| 12 #include "net/http/http_byte_range.h" | 11 #include "net/http/http_byte_range.h" |
| 13 #include "net/url_request/url_request_job.h" | 12 #include "net/url_request/url_request_job.h" |
| 14 #include "webkit/blob/blob_data.h" | 13 #include "webkit/blob/blob_data.h" |
| 15 #include "webkit/blob/blob_export.h" | 14 #include "webkit/blob/blob_export.h" |
| 16 | 15 |
| 17 namespace base { | 16 namespace base { |
| 18 class MessageLoopProxy; | 17 class MessageLoopProxy; |
| 19 struct PlatformFileInfo; | 18 struct PlatformFileInfo; |
| 20 } | 19 } |
| 21 | 20 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 bool byte_range_set_; | 89 bool byte_range_set_; |
| 91 net::HttpByteRange byte_range_; | 90 net::HttpByteRange byte_range_; |
| 92 scoped_ptr<net::HttpResponseInfo> response_info_; | 91 scoped_ptr<net::HttpResponseInfo> response_info_; |
| 93 | 92 |
| 94 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); | 93 DISALLOW_COPY_AND_ASSIGN(BlobURLRequestJob); |
| 95 }; | 94 }; |
| 96 | 95 |
| 97 } // namespace webkit_blob | 96 } // namespace webkit_blob |
| 98 | 97 |
| 99 #endif // WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_H_ | 98 #endif // WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_H_ |
| OLD | NEW |