ozone: fix HDPMLegacy - do the PF after overlays, also clear old overlays
[chromium-blink-merge.git] / storage / browser / fileapi / file_system_dir_url_request_job.h
blobf2567e460420e12a51092d56686bd4fc3b6de773
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
3 // found in the LICENSE file.
5 #ifndef STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_DIR_URL_REQUEST_JOB_H_
6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_DIR_URL_REQUEST_JOB_H_
8 #include <string>
9 #include <vector>
11 #include "base/files/file.h"
12 #include "base/files/file_path.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/message_loop/message_loop_proxy.h"
15 #include "net/url_request/url_request_job.h"
16 #include "storage/browser/fileapi/file_system_url.h"
17 #include "storage/browser/storage_browser_export.h"
19 namespace storage {
21 class FileSystemContext;
22 struct DirectoryEntry;
24 // A request job that handles reading filesystem: URLs for directories.
25 class STORAGE_EXPORT_PRIVATE FileSystemDirURLRequestJob
26 : public net::URLRequestJob {
27 public:
28 FileSystemDirURLRequestJob(
29 net::URLRequest* request,
30 net::NetworkDelegate* network_delegate,
31 const std::string& storage_domain,
32 FileSystemContext* file_system_context);
34 // URLRequestJob methods:
35 void Start() override;
36 void Kill() override;
37 bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override;
38 bool GetCharset(std::string* charset) override;
40 // FilterContext methods (via URLRequestJob):
41 bool GetMimeType(std::string* mime_type) const override;
42 // TODO(adamk): Implement GetResponseInfo and GetResponseCode to simulate
43 // an HTTP response.
45 private:
46 class CallbackDispatcher;
48 ~FileSystemDirURLRequestJob() override;
50 void StartAsync();
51 void DidAttemptAutoMount(base::File::Error result);
52 void DidReadDirectory(base::File::Error result,
53 const std::vector<DirectoryEntry>& entries,
54 bool has_more);
56 std::string data_;
57 FileSystemURL url_;
58 const std::string storage_domain_;
59 FileSystemContext* file_system_context_;
60 base::WeakPtrFactory<FileSystemDirURLRequestJob> weak_factory_;
62 DISALLOW_COPY_AND_ASSIGN(FileSystemDirURLRequestJob);
65 } // namespace storage
67 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_DIR_URL_REQUEST_JOB_H_