| 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_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ | 5 #ifndef WEBKIT_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ |
| 6 #define WEBKIT_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ | 6 #define WEBKIT_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "webkit/fileapi/file_system_operation.h" | 10 #include "webkit/browser/fileapi/file_system_operation.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class SequencedTaskRunner; | 13 class SequencedTaskRunner; |
| 14 } // namespace base | 14 } // namespace base |
| 15 | 15 |
| 16 namespace webkit_blob { | 16 namespace webkit_blob { |
| 17 class FileStreamReader; | 17 class FileStreamReader; |
| 18 } // namespace webkit_blob | 18 } // namespace webkit_blob |
| 19 | 19 |
| 20 namespace fileapi { | 20 namespace fileapi { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 const base::Time& expected_modification_time) = 0; | 141 const base::Time& expected_modification_time) = 0; |
| 142 | 142 |
| 143 protected: | 143 protected: |
| 144 friend class base::RefCountedThreadSafe<RemoteFileSystemProxyInterface>; | 144 friend class base::RefCountedThreadSafe<RemoteFileSystemProxyInterface>; |
| 145 virtual ~RemoteFileSystemProxyInterface() {} | 145 virtual ~RemoteFileSystemProxyInterface() {} |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace fileapi | 148 } // namespace fileapi |
| 149 | 149 |
| 150 #endif // WEBKIT_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ | 150 #endif // WEBKIT_CHROMEOS_FILEAPI_REMOTE_FILE_SYSTEM_PROXY_H_ |
| OLD | NEW |