| Index: webkit/tools/test_shell/simple_file_system.h
|
| diff --git a/webkit/tools/test_shell/simple_file_system.h b/webkit/tools/test_shell/simple_file_system.h
|
| index 1497806f46ef37c3ba57059662dc65de3fb81cbb..079003b8c980fb717f9b46f905a4277fa79e638e 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.h
|
| +++ b/webkit/tools/test_shell/simple_file_system.h
|
| @@ -40,7 +40,55 @@ class SimpleFileSystem
|
| return file_system_context_.get();
|
| }
|
|
|
| - // WebKit::WebFileSystem methods.
|
| + // New WebKit::WebFileSystem overrides.
|
| + virtual void move(
|
| + const WebKit::WebURL& src_path,
|
| + const WebKit::WebURL& dest_path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void copy(
|
| + const WebKit::WebURL& src_path,
|
| + const WebKit::WebURL& dest_path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void remove(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void removeRecursively(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void readMetadata(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void createFile(
|
| + const WebKit::WebURL& path,
|
| + bool exclusive,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void createDirectory(
|
| + const WebKit::WebURL& path,
|
| + bool exclusive,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void fileExists(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void directoryExists(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual void readDirectory(
|
| + const WebKit::WebURL& path,
|
| + WebKit::WebFileSystemCallbacks*);
|
| +
|
| + virtual WebKit::WebFileWriter* createFileWriter(
|
| + const WebKit::WebURL& path, WebKit::WebFileWriterClient*);
|
| +
|
| + // Old WebKit::WebFileSystem overrides, soon to go away.
|
| virtual void move(const WebKit::WebString& src_path,
|
| const WebKit::WebString& dest_path,
|
| WebKit::WebFileSystemCallbacks* callbacks);
|
|
|