| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ | 5 #ifndef CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ |
| 6 #define CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ | 6 #define CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 // Dispatches and sends file system related messages sent to/from a child | 25 // Dispatches and sends file system related messages sent to/from a child |
| 26 // process from/to the main browser process. There is one instance | 26 // process from/to the main browser process. There is one instance |
| 27 // per child process. Messages are dispatched on the main child thread. | 27 // per child process. Messages are dispatched on the main child thread. |
| 28 class FileSystemDispatcher : public IPC::Channel::Listener { | 28 class FileSystemDispatcher : public IPC::Channel::Listener { |
| 29 public: | 29 public: |
| 30 FileSystemDispatcher(); | 30 FileSystemDispatcher(); |
| 31 ~FileSystemDispatcher(); | 31 ~FileSystemDispatcher(); |
| 32 | 32 |
| 33 // IPC::Channel::Listener implementation. | 33 // IPC::Channel::Listener implementation. |
| 34 bool OnMessageReceived(const IPC::Message& msg); | 34 virtual bool OnMessageReceived(const IPC::Message& msg); |
| 35 | 35 |
| 36 bool OpenFileSystem(const GURL& origin_url, | 36 bool OpenFileSystem(const GURL& origin_url, |
| 37 fileapi::FileSystemType type, | 37 fileapi::FileSystemType type, |
| 38 long long size, | 38 long long size, |
| 39 bool create, | 39 bool create, |
| 40 fileapi::FileSystemCallbackDispatcher* dispatcher); | 40 fileapi::FileSystemCallbackDispatcher* dispatcher); |
| 41 bool Move(const FilePath& src_path, | 41 bool Move(const FilePath& src_path, |
| 42 const FilePath& dest_path, | 42 const FilePath& dest_path, |
| 43 fileapi::FileSystemCallbackDispatcher* dispatcher); | 43 fileapi::FileSystemCallbackDispatcher* dispatcher); |
| 44 bool Copy(const FilePath& src_path, | 44 bool Copy(const FilePath& src_path, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 bool has_more); | 93 bool has_more); |
| 94 void DidFail(int request_id, base::PlatformFileError error_code); | 94 void DidFail(int request_id, base::PlatformFileError error_code); |
| 95 void DidWrite(int request_id, int64 bytes, bool complete); | 95 void DidWrite(int request_id, int64 bytes, bool complete); |
| 96 | 96 |
| 97 IDMap<fileapi::FileSystemCallbackDispatcher, IDMapOwnPointer> dispatchers_; | 97 IDMap<fileapi::FileSystemCallbackDispatcher, IDMapOwnPointer> dispatchers_; |
| 98 | 98 |
| 99 DISALLOW_COPY_AND_ASSIGN(FileSystemDispatcher); | 99 DISALLOW_COPY_AND_ASSIGN(FileSystemDispatcher); |
| 100 }; | 100 }; |
| 101 | 101 |
| 102 #endif // CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ | 102 #endif // CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ |
| OLD | NEW |