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_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/message_loop_proxy.h" | 14 #include "base/message_loop_proxy.h" |
15 #include "base/platform_file.h" | 15 #include "base/platform_file.h" |
16 #include "net/http/http_byte_range.h" | 16 #include "net/http/http_byte_range.h" |
17 #include "net/url_request/url_request_job.h" | 17 #include "net/url_request/url_request_job.h" |
18 | 18 |
19 class GURL; | 19 class GURL; |
20 class FilePath; | 20 class FilePath; |
21 | 21 |
| 22 namespace net { |
| 23 class FileStream; |
| 24 } |
| 25 |
22 namespace webkit_blob { | 26 namespace webkit_blob { |
23 class LocalFileReader; | |
24 class ShareableFileReference; | 27 class ShareableFileReference; |
25 } | 28 } |
26 | 29 |
27 namespace fileapi { | 30 namespace fileapi { |
28 class FileSystemContext; | 31 class FileSystemContext; |
29 | 32 |
30 // A request job that handles reading filesystem: URLs | 33 // A request job that handles reading filesystem: URLs |
31 class FileSystemURLRequestJob : public net::URLRequestJob { | 34 class FileSystemURLRequestJob : public net::URLRequestJob { |
32 public: | 35 public: |
33 FileSystemURLRequestJob( | 36 FileSystemURLRequestJob( |
(...skipping 29 matching lines...) Expand all Loading... |
63 const FilePath& platform_path, | 66 const FilePath& platform_path, |
64 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); | 67 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); |
65 void DidOpen(base::PlatformFileError error_code, | 68 void DidOpen(base::PlatformFileError error_code, |
66 base::PassPlatformFile file, bool created); | 69 base::PassPlatformFile file, bool created); |
67 void DidRead(int result); | 70 void DidRead(int result); |
68 void NotifyFailed(int rv); | 71 void NotifyFailed(int rv); |
69 | 72 |
70 FileSystemContext* file_system_context_; | 73 FileSystemContext* file_system_context_; |
71 scoped_refptr<base::MessageLoopProxy> file_thread_proxy_; | 74 scoped_refptr<base::MessageLoopProxy> file_thread_proxy_; |
72 base::WeakPtrFactory<FileSystemURLRequestJob> weak_factory_; | 75 base::WeakPtrFactory<FileSystemURLRequestJob> weak_factory_; |
73 scoped_ptr<webkit_blob::LocalFileReader> reader_; | 76 scoped_ptr<net::FileStream> stream_; |
74 scoped_refptr<webkit_blob::ShareableFileReference> snapshot_ref_; | 77 scoped_refptr<webkit_blob::ShareableFileReference> snapshot_ref_; |
75 bool is_directory_; | 78 bool is_directory_; |
76 scoped_ptr<net::HttpResponseInfo> response_info_; | 79 scoped_ptr<net::HttpResponseInfo> response_info_; |
77 int64 remaining_bytes_; | 80 int64 remaining_bytes_; |
78 net::HttpByteRange byte_range_; | 81 net::HttpByteRange byte_range_; |
79 | 82 |
80 DISALLOW_COPY_AND_ASSIGN(FileSystemURLRequestJob); | 83 DISALLOW_COPY_AND_ASSIGN(FileSystemURLRequestJob); |
81 }; | 84 }; |
82 | 85 |
83 } // namespace fileapi | 86 } // namespace fileapi |
84 | 87 |
85 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 88 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
OLD | NEW |