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

Unified Diff: content/common/file_system/webfilewriter_impl.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 | « content/common/file_system/webfilesystem_impl.cc ('k') | content/common/file_system/webfilewriter_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/file_system/webfilewriter_impl.h
===================================================================
--- content/common/file_system/webfilewriter_impl.h (revision 81454)
+++ content/common/file_system/webfilewriter_impl.h (working copy)
@@ -15,14 +15,13 @@
class WebFileWriterImpl : public fileapi::WebFileWriterBase,
public base::SupportsWeakPtr<WebFileWriterImpl> {
public:
- WebFileWriterImpl(
- const WebKit::WebString& path, WebKit::WebFileWriterClient* client);
+ WebFileWriterImpl(const GURL& path, WebKit::WebFileWriterClient* client);
virtual ~WebFileWriterImpl();
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 | « content/common/file_system/webfilesystem_impl.cc ('k') | content/common/file_system/webfilewriter_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698