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

Unified Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: memory leak fixed Created 5 years, 11 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
Index: chrome/browser/sync_file_system/local/canned_syncable_file_system.h
diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
index 13ebb830d506a0030fc03a452194254002c660ef..6c02b9e4cabe23cfea642655e9fc1516464721c2 100644
--- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
+++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
@@ -140,7 +140,7 @@ class CannedSyncableFileSystem
// Returns the # of bytes written (>=0) or an error code (<0).
int64 Write(net::URLRequestContext* url_request_context,
const storage::FileSystemURL& url,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
+ scoped_ptr<storage::BlobDataSnapshotHandle> blob_data_handle);
int64 WriteString(const storage::FileSystemURL& url, const std::string& data);
// Purges the file system local storage.
@@ -201,7 +201,7 @@ class CannedSyncableFileSystem
const StatusCallback& callback);
void DoWrite(net::URLRequestContext* url_request_context,
const storage::FileSystemURL& url,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle,
+ scoped_ptr<storage::BlobDataSnapshotHandle> blob_data_handle,
const WriteCallback& callback);
void DoWriteString(const storage::FileSystemURL& url,
const std::string& data,

Powered by Google App Engine
This is Rietveld 408576698