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

Unified Diff: content/public/test/mock_blob_url_request_context.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: content/public/test/mock_blob_url_request_context.h
diff --git a/content/public/test/mock_blob_url_request_context.h b/content/public/test/mock_blob_url_request_context.h
index 06acf24ec270537a8d52b9fba7d855b66f31d251..77388149c8a7c97d7a800966946db3de010a5890 100644
--- a/content/public/test/mock_blob_url_request_context.h
+++ b/content/public/test/mock_blob_url_request_context.h
@@ -14,7 +14,7 @@ class FileSystemContext;
}
namespace storage {
-class BlobDataHandle;
+class BlobDataSnapshotHandle;
class BlobStorageContext;
}
@@ -45,12 +45,12 @@ class ScopedTextBlob {
~ScopedTextBlob();
// Returns a BlobDataHandle referring to the scoped blob.
- scoped_ptr<storage::BlobDataHandle> GetBlobDataHandle();
+ scoped_ptr<storage::BlobDataSnapshotHandle> GetBlobDataHandle();
private:
const std::string blob_id_;
storage::BlobStorageContext* context_;
- scoped_ptr<storage::BlobDataHandle> handle_;
+ scoped_ptr<storage::BlobDataSnapshotHandle> handle_;
DISALLOW_COPY_AND_ASSIGN(ScopedTextBlob);
};

Powered by Google App Engine
This is Rietveld 408576698