| 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_WEBFILESYSTEM_IMPL_H_ | 5 #ifndef CHROME_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| 6 #define CHROME_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ | 6 #define CHROME_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" | 9 #include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 virtual void copy( | 26 virtual void copy( |
| 27 const WebKit::WebString& src_path, | 27 const WebKit::WebString& src_path, |
| 28 const WebKit::WebString& dest_path, | 28 const WebKit::WebString& dest_path, |
| 29 WebKit::WebFileSystemCallbacks*); | 29 WebKit::WebFileSystemCallbacks*); |
| 30 | 30 |
| 31 virtual void remove( | 31 virtual void remove( |
| 32 const WebKit::WebString& path, | 32 const WebKit::WebString& path, |
| 33 WebKit::WebFileSystemCallbacks*); | 33 WebKit::WebFileSystemCallbacks*); |
| 34 | 34 |
| 35 virtual void removeRecursively( |
| 36 const WebKit::WebString& path, |
| 37 WebKit::WebFileSystemCallbacks*); |
| 38 |
| 35 virtual void readMetadata( | 39 virtual void readMetadata( |
| 36 const WebKit::WebString& path, | 40 const WebKit::WebString& path, |
| 37 WebKit::WebFileSystemCallbacks*); | 41 WebKit::WebFileSystemCallbacks*); |
| 38 | 42 |
| 39 virtual void createFile( | 43 virtual void createFile( |
| 40 const WebKit::WebString& path, | 44 const WebKit::WebString& path, |
| 41 bool exclusive, | 45 bool exclusive, |
| 42 WebKit::WebFileSystemCallbacks*); | 46 WebKit::WebFileSystemCallbacks*); |
| 43 | 47 |
| 44 virtual void createDirectory( | 48 virtual void createDirectory( |
| (...skipping 11 matching lines...) Expand all Loading... |
| 56 | 60 |
| 57 virtual void readDirectory( | 61 virtual void readDirectory( |
| 58 const WebKit::WebString& path, | 62 const WebKit::WebString& path, |
| 59 WebKit::WebFileSystemCallbacks*); | 63 WebKit::WebFileSystemCallbacks*); |
| 60 | 64 |
| 61 virtual WebKit::WebFileWriter* createFileWriter( | 65 virtual WebKit::WebFileWriter* createFileWriter( |
| 62 const WebKit::WebString& path, WebKit::WebFileWriterClient*); | 66 const WebKit::WebString& path, WebKit::WebFileWriterClient*); |
| 63 }; | 67 }; |
| 64 | 68 |
| 65 #endif // CHROME_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ | 69 #endif // CHROME_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| OLD | NEW |