diff options
Diffstat (limited to 'webkit/tools/test_shell/simple_file_writer.h')
-rw-r--r-- | webkit/tools/test_shell/simple_file_writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/simple_file_writer.h b/webkit/tools/test_shell/simple_file_writer.h index 6ef27b9..9ea2da5 100644 --- a/webkit/tools/test_shell/simple_file_writer.h +++ b/webkit/tools/test_shell/simple_file_writer.h @@ -22,7 +22,7 @@ class SimpleFileWriter : public fileapi::WebFileWriterBase, public base::SupportsWeakPtr<SimpleFileWriter> { public: SimpleFileWriter( - const WebKit::WebString& path, + const GURL& path, WebKit::WebFileWriterClient* client, fileapi::FileSystemContext* file_system_context); virtual ~SimpleFileWriter(); @@ -38,8 +38,8 @@ class SimpleFileWriter : public fileapi::WebFileWriterBase, protected: // WebFileWriterBase overrides - virtual void DoTruncate(const FilePath& path, int64 offset); - virtual void DoWrite(const FilePath& path, const GURL& blob_url, + virtual void DoTruncate(const GURL& path, int64 offset); + virtual void DoWrite(const GURL& path, const GURL& blob_url, int64 offset); virtual void DoCancel(); |