| 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..738341e9dad0b5138b105fc4e401de60b4caddff 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.h
|
| +++ b/webkit/tools/test_shell/simple_file_system.h
|
| @@ -16,6 +16,7 @@
|
| namespace WebKit {
|
| class WebFileSystemCallbacks;
|
| class WebFrame;
|
| +class WebURL;
|
| }
|
|
|
| namespace fileapi {
|
| @@ -40,7 +41,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);
|
|
|