Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/provided_file_system.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info .h" 9 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info .h"
10 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte rface.h" 10 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte rface.h"
(...skipping 22 matching lines...) Expand all
33 // Provided file system implementation. Forwards requests between providers and 33 // Provided file system implementation. Forwards requests between providers and
34 // clients. 34 // clients.
35 class ProvidedFileSystem : public ProvidedFileSystemInterface { 35 class ProvidedFileSystem : public ProvidedFileSystemInterface {
36 public: 36 public:
37 ProvidedFileSystem(Profile* profile, 37 ProvidedFileSystem(Profile* profile,
38 const ProvidedFileSystemInfo& file_system_info); 38 const ProvidedFileSystemInfo& file_system_info);
39 virtual ~ProvidedFileSystem(); 39 virtual ~ProvidedFileSystem();
40 40
41 // ProvidedFileSystemInterface overrides. 41 // ProvidedFileSystemInterface overrides.
42 virtual AbortCallback RequestUnmount( 42 virtual AbortCallback RequestUnmount(
43 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 43 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
44 virtual AbortCallback GetMetadata( 44 virtual AbortCallback GetMetadata(
45 const base::FilePath& entry_path, 45 const base::FilePath& entry_path,
46 const GetMetadataCallback& callback) OVERRIDE; 46 const GetMetadataCallback& callback) OVERRIDE;
47 virtual AbortCallback ReadDirectory( 47 virtual AbortCallback ReadDirectory(
48 const base::FilePath& directory_path, 48 const base::FilePath& directory_path,
49 const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE; 49 const storage::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
50 virtual AbortCallback OpenFile(const base::FilePath& file_path, 50 virtual AbortCallback OpenFile(const base::FilePath& file_path,
51 OpenFileMode mode, 51 OpenFileMode mode,
52 const OpenFileCallback& callback) OVERRIDE; 52 const OpenFileCallback& callback) OVERRIDE;
53 virtual AbortCallback CloseFile( 53 virtual AbortCallback CloseFile(
54 int file_handle, 54 int file_handle,
55 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 55 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
56 virtual AbortCallback ReadFile( 56 virtual AbortCallback ReadFile(
57 int file_handle, 57 int file_handle,
58 net::IOBuffer* buffer, 58 net::IOBuffer* buffer,
59 int64 offset, 59 int64 offset,
60 int length, 60 int length,
61 const ReadChunkReceivedCallback& callback) OVERRIDE; 61 const ReadChunkReceivedCallback& callback) OVERRIDE;
62 virtual AbortCallback CreateDirectory( 62 virtual AbortCallback CreateDirectory(
63 const base::FilePath& directory_path, 63 const base::FilePath& directory_path,
64 bool exclusive, 64 bool exclusive,
65 bool recursive, 65 bool recursive,
66 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 66 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
67 virtual AbortCallback DeleteEntry( 67 virtual AbortCallback DeleteEntry(
68 const base::FilePath& entry_path, 68 const base::FilePath& entry_path,
69 bool recursive, 69 bool recursive,
70 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 70 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
71 virtual AbortCallback CreateFile( 71 virtual AbortCallback CreateFile(
72 const base::FilePath& file_path, 72 const base::FilePath& file_path,
73 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 73 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
74 virtual AbortCallback CopyEntry( 74 virtual AbortCallback CopyEntry(
75 const base::FilePath& source_path, 75 const base::FilePath& source_path,
76 const base::FilePath& target_path, 76 const base::FilePath& target_path,
77 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 77 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
78 virtual AbortCallback MoveEntry( 78 virtual AbortCallback MoveEntry(
79 const base::FilePath& source_path, 79 const base::FilePath& source_path,
80 const base::FilePath& target_path, 80 const base::FilePath& target_path,
81 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 81 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
82 virtual AbortCallback Truncate( 82 virtual AbortCallback Truncate(
83 const base::FilePath& file_path, 83 const base::FilePath& file_path,
84 int64 length, 84 int64 length,
85 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 85 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
86 virtual AbortCallback WriteFile( 86 virtual AbortCallback WriteFile(
87 int file_handle, 87 int file_handle,
88 net::IOBuffer* buffer, 88 net::IOBuffer* buffer,
89 int64 offset, 89 int64 offset,
90 int length, 90 int length,
91 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; 91 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
92 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE; 92 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
93 virtual RequestManager* GetRequestManager() OVERRIDE; 93 virtual RequestManager* GetRequestManager() OVERRIDE;
94 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE; 94 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE;
95 95
96 private: 96 private:
97 // Aborts an operation executed with a request id equal to 97 // Aborts an operation executed with a request id equal to
98 // |operation_request_id|. The request is removed immediately on the C++ side 98 // |operation_request_id|. The request is removed immediately on the C++ side
99 // despite being handled by the providing extension or not. 99 // despite being handled by the providing extension or not.
100 void Abort(int operation_request_id, 100 void Abort(int operation_request_id,
101 const fileapi::AsyncFileUtil::StatusCallback& callback); 101 const storage::AsyncFileUtil::StatusCallback& callback);
102 102
103 Profile* profile_; // Not owned. 103 Profile* profile_; // Not owned.
104 extensions::EventRouter* event_router_; // Not owned. May be NULL. 104 extensions::EventRouter* event_router_; // Not owned. May be NULL.
105 ProvidedFileSystemInfo file_system_info_; 105 ProvidedFileSystemInfo file_system_info_;
106 scoped_ptr<NotificationManagerInterface> notification_manager_; 106 scoped_ptr<NotificationManagerInterface> notification_manager_;
107 RequestManager request_manager_; 107 RequestManager request_manager_;
108 108
109 base::WeakPtrFactory<ProvidedFileSystem> weak_ptr_factory_; 109 base::WeakPtrFactory<ProvidedFileSystem> weak_ptr_factory_;
110 DISALLOW_COPY_AND_ASSIGN(ProvidedFileSystem); 110 DISALLOW_COPY_AND_ASSIGN(ProvidedFileSystem);
111 }; 111 };
112 112
113 } // namespace file_system_provider 113 } // namespace file_system_provider
114 } // namespace chromeos 114 } // namespace chromeos
115 115
116 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ 116 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698