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

Unified Diff: content/common/fileapi/webfilewriter_impl.cc

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years 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
Index: content/common/fileapi/webfilewriter_impl.cc
===================================================================
--- content/common/fileapi/webfilewriter_impl.cc (revision 171309)
+++ content/common/fileapi/webfilewriter_impl.cc (working copy)
@@ -23,10 +23,14 @@
}
virtual ~CallbackDispatcher() {
}
-
- virtual void DidReadMetadata(const base::PlatformFileInfo&, const FilePath&) {
+ virtual void DidReadMetadata(
+ const base::PlatformFileInfo&, const FilePath&) {
NOTREACHED();
}
+ virtual void DidCreateSnapshotFile(
+ const base::PlatformFileInfo&, const FilePath&) {
+ NOTREACHED();
+ }
virtual void DidReadDirectory(
const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more) {
@@ -69,9 +73,9 @@
}
void WebFileWriterImpl::DoWrite(
- const GURL& path, const GURL& blob_url, int64 offset) {
+ const GURL& path, const std::string& blob_uuid, int64 offset) {
GetFileSystemDispatcher()->Write(
- path, blob_url, offset, &request_id_,
+ path, blob_uuid, offset, &request_id_,
new CallbackDispatcher(AsWeakPtr()));
}

Powered by Google App Engine
This is Rietveld 408576698