Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: webkit/tools/test_shell/simple_file_writer.h

Issue 6833007: More filesystem cleanup: convert URL-encoded-as-FilePath to actual URL, where (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/test_shell/simple_file_system.cc ('k') | webkit/tools/test_shell/simple_file_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/simple_file_writer.h
===================================================================
--- webkit/tools/test_shell/simple_file_writer.h (revision 81454)
+++ webkit/tools/test_shell/simple_file_writer.h (working copy)
@@ -22,7 +22,7 @@
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 @@
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();
« no previous file with comments | « webkit/tools/test_shell/simple_file_system.cc ('k') | webkit/tools/test_shell/simple_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698